Version 15.242.6

This commit is contained in:
Antonio Cañas Vargas 2016-07-15 19:17:28 +02:00
parent 5a3eefb9b8
commit 438d952b5d
2 changed files with 3 additions and 2 deletions

View File

@ -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

View File

@ -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)