Version 15.35.5

This commit is contained in:
Antonio Cañas Vargas 2015-11-09 20:22:41 +01:00
parent 30c09c9323
commit 067fdb80f6
3 changed files with 9 additions and 7 deletions

View File

@ -466,11 +466,11 @@ CREATE TABLE IF NOT EXISTS expanded_folders (
-- Table file_browser_last: stores the last click of every user in each file browser zone
--
CREATE TABLE IF NOT EXISTS file_browser_last (
"UsrCod INT NOT NULL,
"FileBrowser TINYINT NOT NULL,
"Cod INT NOT NULL DEFAULT -1,
"LastClick DATETIME NOT NULL,
"UNIQUE INDEX(UsrCod,FileBrowser,Cod));
UsrCod INT NOT NULL,
FileBrowser TINYINT NOT NULL,
Cod INT NOT NULL DEFAULT -1,
LastClick DATETIME NOT NULL,
UNIQUE INDEX(UsrCod,FileBrowser,Cod));
--
-- Table file_browser_size: stores the sizes of the file zones
--

View File

@ -115,11 +115,13 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 15.35.4 (2015/11/09)"
#define Log_PLATFORM_VERSION "SWAD 15.35.5 (2015/11/09)"
// 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 15.35.5: Nov 09, 2015 Fixed bug in swad.sql, reported by Florent H. Carré.
Fixed bug in groups, reported by Francisco Ocaña Lara. (186977 lines)
Version 15.35.4: Nov 09, 2015 Fixed bug in test exams. (186975 lines)
Version 15.35.3: Nov 09, 2015 Fixed bug in test exams, reported by Antonio Arcos Cebrián.
Fixed bug in marks, reported by Javier Fernández Baldomero. (186973 lines)

View File

@ -1392,7 +1392,7 @@ static void Grp_ListGroupsForEdition (void)
Grp_PutParamGrpCod (Grp->GrpCod);
fprintf (Gbl.F.Out,"<input type=\"text\" name=\"GrpName\""
" size=\"40\" maxlength=\"%u\" value=\"%s\""
" onchange=\":document.getElementById('%s').submit();\" />",
" onchange=\"document.getElementById('%s').submit();\" />",
MAX_LENGTH_GROUP_NAME,Grp->GrpName,Gbl.FormId);
Act_FormEnd ();
fprintf (Gbl.F.Out,"</td>");