Version 16.64.33

This commit is contained in:
Antonio Cañas Vargas 2016-11-20 14:00:08 +01:00
parent 42100abc7b
commit e904179f72
3 changed files with 4 additions and 3 deletions

View File

@ -367,7 +367,7 @@ static void Acc_ShowFormRequestNewAccountWithParams (const char *NewNicknameWith
"%s:" "%s:"
"</td>" "</td>"
"<td class=\"LEFT_MIDDLE\">" "<td class=\"LEFT_MIDDLE\">"
"<input type=\"text\" name=\"NewEmail\"" "<input type=\"email\" name=\"NewEmail\""
" size=\"25\" maxlength=\"%u\"" " size=\"25\" maxlength=\"%u\""
" placeholder=\"%s\" value=\"%s\"" " placeholder=\"%s\" value=\"%s\""
" required=\"required\" />" " required=\"required\" />"

View File

@ -170,13 +170,14 @@
/****************************** Public constants *****************************/ /****************************** Public constants *****************************/
/*****************************************************************************/ /*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 16.64.32 (2016-11-20)" #define Log_PLATFORM_VERSION "SWAD 16.64.33 (2016-11-20)"
#define CSS_FILE "swad16.60.1.css" #define CSS_FILE "swad16.60.1.css"
#define JS_FILE "swad16.46.1.js" #define JS_FILE "swad16.46.1.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.64.33: Nov 20, 2016 Input fields for email are changed from text to email. (207375 lines)
Version 16.64.32: Nov 20, 2016 Input fields for phone numbers are changed from text to tel. (207374 lines) Version 16.64.32: Nov 20, 2016 Input fields for phone numbers are changed from text to tel. (207374 lines)
Version 16.64.31: Nov 19, 2016 Input field required in new holiday form. (207373 lines) Version 16.64.31: Nov 19, 2016 Input field required in new holiday form. (207373 lines)
Version 16.64.30: Nov 19, 2016 Input fields required in new place form. (207371 lines) Version 16.64.30: Nov 19, 2016 Input fields required in new place form. (207371 lines)

View File

@ -1286,7 +1286,7 @@ void Mai_ShowFormChangeUsrEmail (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=\"NewEmail\"" "<input type=\"email\" name=\"NewEmail\""
" size=\"20\" maxlength=\"%u\" value=\"%s\" />" " size=\"20\" maxlength=\"%u\" value=\"%s\" />"
"</div>", "</div>",
Usr_MAX_BYTES_USR_EMAIL, Usr_MAX_BYTES_USR_EMAIL,