Version 16.64.24

This commit is contained in:
Antonio Cañas Vargas 2016-11-19 20:12:13 +01:00
parent 5f76aae574
commit 0158020992
2 changed files with 4 additions and 2 deletions

View File

@ -170,13 +170,14 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 16.64.23 (2016-11-19)"
#define Log_PLATFORM_VERSION "SWAD 16.64.24 (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.24: Nov 19, 2016 Input field required in new type of degree. (207345 lines)
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)

View File

@ -353,7 +353,8 @@ static void DT_PutFormToCreateDegreeType (void)
fprintf (Gbl.F.Out,"<tr>"
"<td class=\"LEFT_MIDDLE\">"
"<input type=\"text\" name=\"DegTypName\""
" size=\"25\" maxlength=\"%u\" value=\"%s\" />"
" size=\"25\" maxlength=\"%u\" value=\"%s\""
" required=\"required\" />"
"</td>",
Deg_MAX_LENGTH_DEGREE_TYPE_NAME,Gbl.Degs.EditingDegTyp.DegTypName);