Version 16.106.2

This commit is contained in:
Antonio Cañas Vargas 2016-12-24 01:07:48 +01:00
parent eb174fc852
commit ca45b76023
2 changed files with 5 additions and 4 deletions

View File

@ -616,8 +616,8 @@ void ID_ShowFormChangeUsrID (const struct UsrData *UsrDat,bool ItsMe)
if (UsrDat->IDs.Num < ID_MAX_IDS_PER_USER) if (UsrDat->IDs.Num < ID_MAX_IDS_PER_USER)
{ {
fprintf (Gbl.F.Out,"<tr>" fprintf (Gbl.F.Out,"<tr>"
"<td class=\"%s RIGHT_MIDDLE\">" "<td class=\"RIGHT_MIDDLE\">"
"%s:" "<label for=\"NewID\" class=\"%s\">%s:</label>"
"</td>" "</td>"
"<td class=\"LEFT_MIDDLE\">", "<td class=\"LEFT_MIDDLE\">",
The_ClassForm[Gbl.Prefs.Theme], The_ClassForm[Gbl.Prefs.Theme],
@ -633,7 +633,7 @@ void ID_ShowFormChangeUsrID (const struct UsrData *UsrDat,bool ItsMe)
Usr_PutParamUsrCodEncrypted (UsrDat->EncryptedUsrCod); Usr_PutParamUsrCodEncrypted (UsrDat->EncryptedUsrCod);
} }
fprintf (Gbl.F.Out,"<div class=\"FORM_ACCOUNT\">" fprintf (Gbl.F.Out,"<div class=\"FORM_ACCOUNT\">"
"<input type=\"text\" name=\"NewID\"" "<input type=\"text\" id=\"NewID\" name=\"NewID\""
" size=\"18\" maxlength=\"%u\" value=\"%s\" />" " size=\"18\" maxlength=\"%u\" value=\"%s\" />"
"</div>", "</div>",
ID_MAX_LENGTH_USR_ID, ID_MAX_LENGTH_USR_ID,

View File

@ -188,13 +188,14 @@
/****************************** Public constants *****************************/ /****************************** Public constants *****************************/
/*****************************************************************************/ /*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 16.106.1 (2016-12-24)" #define Log_PLATFORM_VERSION "SWAD 16.106.2 (2016-12-24)"
#define CSS_FILE "swad16.106.css" #define CSS_FILE "swad16.106.css"
#define JS_FILE "swad16.101.js" #define JS_FILE "swad16.101.js"
// Number of lines (includes comments but not blank lines) has been got with the following command: // 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 // nl swad*.c swad*.h css/swad*.css py/swad*.py js/swad*.js soap/swad*?.h sql/swad*.sql | tail -1
/* /*
Version 16.106.2: Dec 24, 2016 Changes in behaviour of labels in forms. (211409 lines)
Version 16.106.1: Dec 24, 2016 Changes in stats about preferences. (211408 lines) Version 16.106.1: Dec 24, 2016 Changes in stats about preferences. (211408 lines)
Version 16.106: Dec 23, 2016 Changes in preferences. (211407 lines) Version 16.106: Dec 23, 2016 Changes in preferences. (211407 lines)
Version 16.105.13:Dec 23, 2016 Changes in behaviour of labels in forms. (211411 lines) Version 16.105.13:Dec 23, 2016 Changes in behaviour of labels in forms. (211411 lines)