diff --git a/swad_changelog.h b/swad_changelog.h index f1dfcd0f8..65698d977 100644 --- a/swad_changelog.h +++ b/swad_changelog.h @@ -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) diff --git a/swad_record.c b/swad_record.c index 620efa688..85b9aaeed 100644 --- a/swad_record.c +++ b/swad_record.c @@ -352,14 +352,16 @@ void Rec_ShowFormCreateRecordField (void) /***** Field name *****/ fprintf (Gbl.F.Out,"" "" + " style=\"width:500px;\" maxlength=\"%u\" value=\"%s\"" + " required=\"required\" />" "", Rec_MAX_LENGTH_NAME_FIELD,Gbl.CurrentCrs.Records.Field.Name); /***** Number of lines in form ******/ fprintf (Gbl.F.Out,"" "" + " size=\"2\" maxlength=\"2\" value=\"%u\"" + " required=\"required\" />" "", Gbl.CurrentCrs.Records.Field.NumLines);