Version 16.64.23

This commit is contained in:
Antonio Cañas Vargas 2016-11-19 20:09:52 +01:00
parent 6ddbc3e159
commit 5f76aae574
2 changed files with 6 additions and 3 deletions

View File

@ -170,13 +170,14 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 16.64.22 (2016-11-19)"
#define Log_PLATFORM_VERSION "SWAD 16.64.23 (2016-11-19)"
#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.23: Nov 19, 2016 Input fields required in new record field form. (207343 lines)
Version 16.64.22: Nov 19, 2016 Input fields required in form to edit one test question. (207340 lines)
Version 16.64.21: Nov 19, 2016 Input fields required in form to configure tests. (207324 lines)
Version 16.64.20: Nov 19, 2016 Input field required in new link form. (207316 lines)

View File

@ -352,14 +352,16 @@ void Rec_ShowFormCreateRecordField (void)
/***** Field name *****/
fprintf (Gbl.F.Out,"<td class=\"LEFT_MIDDLE\">"
"<input type=\"text\" name=\"FieldName\""
" style=\"width:500px;\" maxlength=\"%u\" value=\"%s\" />"
" style=\"width:500px;\" maxlength=\"%u\" value=\"%s\""
" required=\"required\" />"
"</td>",
Rec_MAX_LENGTH_NAME_FIELD,Gbl.CurrentCrs.Records.Field.Name);
/***** Number of lines in form ******/
fprintf (Gbl.F.Out,"<td class=\"CENTER_MIDDLE\">"
"<input type=\"text\" name=\"NumLines\""
" size=\"2\" maxlength=\"2\" value=\"%u\" />"
" size=\"2\" maxlength=\"2\" value=\"%u\""
" required=\"required\" />"
"</td>",
Gbl.CurrentCrs.Records.Field.NumLines);