diff --git a/sql/swad.sql b/sql/swad.sql index ed7679e9a..1649c20a8 100644 --- a/sql/swad.sql +++ b/sql/swad.sql @@ -1115,7 +1115,7 @@ CREATE TABLE IF NOT EXISTS tst_config ( Def INT NOT NULL, Max INT NOT NULL, MinTimeNxtTstPerQst INT NOT NULL DEFAULT 0, - Feedback ENUM('nothing','total_result','each_result','each_good_bad') NOT NULL, + Feedback ENUM('nothing','total_result','each_result','each_good_bad','full_feedback') NOT NULL, UNIQUE INDEX(CrsCod)); -- -- Table tst_exam_questions: stores the questions and answers in test exams made by users diff --git a/swad_changelog.h b/swad_changelog.h index e80a5f4f8..2a751cab5 100644 --- a/swad_changelog.h +++ b/swad_changelog.h @@ -138,13 +138,14 @@ /****************************** Public constants *****************************/ /*****************************************************************************/ -#define Log_PLATFORM_VERSION "SWAD 15.242.5 (2016-07-15)" +#define Log_PLATFORM_VERSION "SWAD 15.242.6 (2016-07-15)" #define CSS_FILE "swad15.229.css" #define JS_FILE "swad15.238.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 15.242.6: Jul 15, 2016 Fixed bug in creation of database table tst_config. (203850 lines) Version 15.242.5: Jul 15, 2016 Fixed bug in user's registration. (203849 lines) Version 15.242.4: Jul 15, 2016 Fixed bug in creation of database table file_browser_size. (203847 lines) Version 15.242.3: Jul 14, 2016 Fixed bug in getting/finding users, due to default mysql mode in 5.7 which is ONLY_FULL_GROUP_BY. (203846 lines)