Version 16.64.9

This commit is contained in:
Antonio Cañas Vargas 2016-11-19 02:41:27 +01:00
parent 4ab289b80e
commit cebca3c4e5
2 changed files with 8 additions and 4 deletions

View File

@ -168,13 +168,14 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 16.64.8 (2016-11-18)"
#define Log_PLATFORM_VERSION "SWAD 16.64.9 (2016-11-18)"
#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.64.9: Nov 18, 2016 Input fields required in edition of institution. (207286 lines)
Version 16.64.8: Nov 18, 2016 Input fields required in edition of country. (207282 lines)
Version 16.64.7: Nov 18, 2016 Input fields required in new account form.
Input fields required in password forms. (207278 lines)

View File

@ -2083,7 +2083,8 @@ static void Ins_PutFormToCreateInstitution (void)
fprintf (Gbl.F.Out,"<td class=\"LEFT_MIDDLE\">"
"<input type=\"text\" name=\"ShortName\""
" maxlength=\"%u\" value=\"%s\""
" class=\"INPUT_SHORT_NAME\" />"
" class=\"INPUT_SHORT_NAME\""
" required=\"required\" />"
"</td>",
Ins_MAX_LENGTH_INSTIT_SHRT_NAME,Ins->ShrtName);
@ -2091,7 +2092,8 @@ static void Ins_PutFormToCreateInstitution (void)
fprintf (Gbl.F.Out,"<td class=\"LEFT_MIDDLE\">"
"<input type=\"text\" name=\"FullName\""
" maxlength=\"%u\" value=\"%s\""
" class=\"INPUT_FULL_NAME\" />"
" class=\"INPUT_FULL_NAME\""
" required=\"required\" />"
"</td>",
Ins_MAX_LENGTH_INSTIT_FULL_NAME,Ins->FullName);
@ -2099,7 +2101,8 @@ static void Ins_PutFormToCreateInstitution (void)
fprintf (Gbl.F.Out,"<td class=\"LEFT_MIDDLE\">"
"<input type=\"text\" name=\"WWW\""
" maxlength=\"%u\" value=\"%s\""
" class=\"INPUT_WWW\" />"
" class=\"INPUT_WWW\""
" required=\"required\" />"
"</td>",
Cns_MAX_LENGTH_WWW,Ins->WWW);