Version 22.118.8: May 30, 2023 Fixed bugs users.

This commit is contained in:
acanas 2023-05-30 13:17:16 +02:00
parent 113c4ceb14
commit 5d243ce195
4 changed files with 7 additions and 10 deletions

View File

@ -458,8 +458,7 @@ void ID_ShowFormChangeMyID (bool IShouldFillInID)
Hlp_PROFILE_Account,Box_NOT_CLOSABLE); Hlp_PROFILE_Account,Box_NOT_CLOSABLE);
/***** Show form to change ID *****/ /***** Show form to change ID *****/
ID_ShowFormChangeUsrID (Usr_ME, ID_ShowFormChangeUsrID (Usr_ME,IShouldFillInID);
IShouldFillInID);
/***** End box *****/ /***** End box *****/
Box_BoxEnd (); Box_BoxEnd ();
@ -681,8 +680,7 @@ static void ID_PutParsRemoveOtherID (void *ID)
void ID_RemoveMyUsrID (void) void ID_RemoveMyUsrID (void)
{ {
/***** Remove user's ID *****/ /***** Remove user's ID *****/
ID_RemoveUsrID (&Gbl.Usrs.Me.UsrDat, ID_RemoveUsrID (&Gbl.Usrs.Me.UsrDat,Usr_ME);
true); // It's me
/***** Update list of IDs *****/ /***** Update list of IDs *****/
ID_GetListIDsFromUsrCod (&Gbl.Usrs.Me.UsrDat); ID_GetListIDsFromUsrCod (&Gbl.Usrs.Me.UsrDat);
@ -778,8 +776,7 @@ static void ID_RemoveUsrID (const struct Usr_Data *UsrDat,Usr_MeOrOther_t MeOrOt
void ID_NewMyUsrID (void) void ID_NewMyUsrID (void)
{ {
/***** New user's ID *****/ /***** New user's ID *****/
ID_ChangeUsrID (&Gbl.Usrs.Me.UsrDat, ID_ChangeUsrID (&Gbl.Usrs.Me.UsrDat,Usr_ME);
true); // It's me
/***** Update list of IDs *****/ /***** Update list of IDs *****/
ID_GetListIDsFromUsrCod (&Gbl.Usrs.Me.UsrDat); ID_GetListIDsFromUsrCod (&Gbl.Usrs.Me.UsrDat);

View File

@ -961,7 +961,7 @@ void Acc_RemoveMyAccount (void)
Msg_DB_MoveUnusedMsgsContentToDeleted (); Msg_DB_MoveUnusedMsgsContentToDeleted ();
} }
else else
Acc_AskIfRemoveUsrAccount (true); Acc_AskIfRemoveUsrAccount (Usr_ME);
} }
void Acc_CompletelyEliminateAccount (struct Usr_Data *UsrDat, void Acc_CompletelyEliminateAccount (struct Usr_Data *UsrDat,

View File

@ -629,10 +629,11 @@ TODO: Emilce Barrera Mesa: Podr
TODO: Emilce Barrera Mesa: Mis estudiantes presentan muchas dificultades a la hora de poner la foto porque la plataforma es muy exigente respecto al fondo de la imagen. TODO: Emilce Barrera Mesa: Mis estudiantes presentan muchas dificultades a la hora de poner la foto porque la plataforma es muy exigente respecto al fondo de la imagen.
*/ */
#define Log_PLATFORM_VERSION "SWAD 22.118.7 (2023-05-30)" #define Log_PLATFORM_VERSION "SWAD 22.118.8 (2023-05-30)"
#define CSS_FILE "swad22.118.5.css" #define CSS_FILE "swad22.118.5.css"
#define JS_FILE "swad22.49.js" #define JS_FILE "swad22.49.js"
/* /*
Version 22.118.8: May 30, 2023 Fixed bugs users. (337361 lines)
Version 22.118.7: May 30, 2023 Fixed bug in photo processing. Reported by Emilio Alemán Carmona. (337364 lines) Version 22.118.7: May 30, 2023 Fixed bug in photo processing. Reported by Emilio Alemán Carmona. (337364 lines)
Version 22.118.6: May 24, 2023 Fixed bug in rubrics. (337363 lines) Version 22.118.6: May 24, 2023 Fixed bug in rubrics. (337363 lines)
Version 22.118.5: May 23, 2023 Changes in comments in surveys. (337360 lines) Version 22.118.5: May 23, 2023 Changes in comments in surveys. (337360 lines)

View File

@ -1344,8 +1344,7 @@ static void Mai_RemoveEmail (struct Usr_Data *UsrDat)
void May_NewMyUsrEmail (void) void May_NewMyUsrEmail (void)
{ {
/***** Remove user's email *****/ /***** Remove user's email *****/
Mai_ChangeUsrEmail (&Gbl.Usrs.Me.UsrDat, Mai_ChangeUsrEmail (&Gbl.Usrs.Me.UsrDat,Usr_ME);
true); // It's me
/***** Show my account again *****/ /***** Show my account again *****/
Acc_ShowFormChgMyAccount (); Acc_ShowFormChgMyAccount ();