diff --git a/sql/swad.sql b/sql/swad.sql index 95620b225..d6e2962ef 100644 --- a/sql/swad.sql +++ b/sql/swad.sql @@ -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 -- diff --git a/swad_changelog.h b/swad_changelog.h index 245d594b2..f30e11632 100644 --- a/swad_changelog.h +++ b/swad_changelog.h @@ -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) diff --git a/swad_group.c b/swad_group.c index bb6ad9d78..d59ca0513 100644 --- a/swad_group.c +++ b/swad_group.c @@ -1392,7 +1392,7 @@ static void Grp_ListGroupsForEdition (void) Grp_PutParamGrpCod (Grp->GrpCod); fprintf (Gbl.F.Out,"", + " onchange=\"document.getElementById('%s').submit();\" />", MAX_LENGTH_GROUP_NAME,Grp->GrpName,Gbl.FormId); Act_FormEnd (); fprintf (Gbl.F.Out,"");