Version 16.63.6

This commit is contained in:
Antonio Cañas Vargas 2016-11-17 01:12:59 +01:00
parent ad64ddf7d7
commit b4d368e5db
3 changed files with 11 additions and 7 deletions

View File

@ -166,13 +166,14 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 16.63.5 (2016-11-17)"
#define Log_PLATFORM_VERSION "SWAD 16.63.6 (2016-11-17)"
#define CSS_FILE "swad16.60.1.css"
#define JS_FILE "swad16.46.1.js"
// Number of lines (includes comments but not blank lines) has been got with the following command:
// nl swad*.c swad*.h css/swad*.css py/swad*.py js/swad*.js soap/swad*?.h sql/swad*.sql | tail -1
/*
Version 16.63.6: Nov 16, 2016 Contextual help on email unconfirmed. (207184 lines)
Version 16.63.5: Nov 16, 2016 Contextual help on edition of countries. (207180 lines)
Version 16.63.4: Nov 16, 2016 Contextual help on edition of institutions. (207177 lines)
Version 16.63.3: Nov 16, 2016 Contextual help on edition of centres. (207174 lines)

View File

@ -146,11 +146,12 @@ const char *Hlp_STATS_Frequent = WIKI "STATS.Frequent";
/***** PROFILE tab *****/
const char *Hlp_PROFILE_Log_in = WIKI "PROFILE.Log%20in";
const char *Hlp_PROFILE_Sign_up = WIKI "PROFILE.Sign%20up";
const char *Hlp_PROFILE_Account = WIKI "PROFILE.Account";
const char *Hlp_PROFILE_Session_role = WIKI "PROFILE.Session#role";
const char *Hlp_PROFILE_Password = WIKI "PROFILE.Password";
const char *Hlp_PROFILE_Log_in = WIKI "PROFILE.Log%20in";
const char *Hlp_PROFILE_Sign_up = WIKI "PROFILE.Sign%20up";
const char *Hlp_PROFILE_Account = WIKI "PROFILE.Account";
const char *Hlp_PROFILE_Account_email = WIKI "PROFILE.Account#email";
const char *Hlp_PROFILE_Session_role = WIKI "PROFILE.Session#role";
const char *Hlp_PROFILE_Password = WIKI "PROFILE.Password";
const char *Hlp_PROFILE_Courses = WIKI "PROFILE.Courses";

View File

@ -1518,6 +1518,7 @@ bool Mai_UpdateEmailInDB (const struct UsrData *UsrDat,const char *NewEmail)
void Mai_PutButtonToCheckEmailAddress (void)
{
extern const char *Hlp_PROFILE_Account_email;
extern const char *Txt_Email_unconfirmed;
extern const char *Txt_Please_check_and_confirm_your_email_address;
extern const char *Txt_Check;
@ -1526,7 +1527,8 @@ void Mai_PutButtonToCheckEmailAddress (void)
Act_FormStart (ActFrmMyAcc);
/***** Frame with button to go to account *****/
Lay_StartRoundFrame (NULL,Txt_Email_unconfirmed,NULL,NULL);
Lay_StartRoundFrame (NULL,Txt_Email_unconfirmed,
NULL,Hlp_PROFILE_Account_email);
Lay_ShowAlert (Lay_WARNING,Txt_Please_check_and_confirm_your_email_address);
Lay_EndRoundFrameWithButton (Lay_CONFIRM_BUTTON,Txt_Check);