Version19.12.3

This commit is contained in:
Antonio Cañas Vargas 2019-09-24 15:29:39 +02:00
parent 2541eaa540
commit 4b27ee2917
4 changed files with 21 additions and 9 deletions

View File

@ -12882,6 +12882,16 @@ INSERT INTO gam_time (MchCod,QstInd) VALUES (61,1,SEC_TO_TIME(1)) ON DUPLICATE K
----------------
SELECT gam_questions.QstCod,
gam_questions.QstInd,
mch_indexes.Indexes
FROM mch_matches,gam_questions,mch_indexes
WHERE mch_matches.MchCod=69
AND mch_matches.GamCod=gam_questions.GamCod
AND mch_matches.MchCod=mch_indexes.MchCod
AND gam_questions.QstInd=mch_indexes.QstInd
ORDER BY gam_questions.QstInd;
SELECT gam_questions.QstCod,
gam_questions.QstInd,
mch_indexes.Indexes

View File

@ -470,10 +470,11 @@ enscript -2 --landscape --color --file-align=2 --highlight --line-numbers -o - *
En OpenSWAD:
ps2pdf source.ps destination.pdf
*/
#define Log_PLATFORM_VERSION "SWAD 19.12.2 (2019-09-24)"
#define Log_PLATFORM_VERSION "SWAD 19.12.3 (2019-09-24)"
#define CSS_FILE "swad19.3.css"
#define JS_FILE "swad18.130.2.js"
/*
Version 19.12.3: Sep 24, 2019 View matches results. Not finished. (245979 lines)
Version 19.12.2: Sep 24, 2019 View matches results. Not finished. (245977 lines)
Version 19.12.1: Sep 24, 2019 View matches results. Not finished. (245987 lines)
Version 19.12: Sep 24, 2019 View matches results. Not finished. (245973 lines)

View File

@ -3496,13 +3496,13 @@ void Mch_ShowOneMchResult (void)
/***** Write answers and solutions *****/
Tst_ShowTestResult (NumQsts,TimeUTC[Dat_START_TIME]);
/***** End table *****/
Tbl_EndTable ();
/***** Write total mark of test *****/
if (ICanViewScore)
Tst_ShowTstTotalMark (NumQsts,TotalScore);
/***** End table *****/
Tbl_EndTable ();
/***** End box *****/
Box_EndBox ();
}
@ -3535,8 +3535,9 @@ static void Mch_GetMatchResultQuestionsFromDB (long MchCod,long UsrCod)
" WHERE mch_matches.MchCod=%ld"
" AND mch_matches.GamCod=gam_questions.GamCod"
" AND mch_matches.MchCod=mch_indexes.MchCod"
" AND mch_matches.QstInd=mch_indexes.QstInd"
" ORDER BY gam_questions.QstInd");
" AND gam_questions.QstInd=mch_indexes.QstInd"
" ORDER BY gam_questions.QstInd",
MchCod);
for (NumQst = 0;
NumQst < NumQsts;
NumQst++)

View File

@ -8202,13 +8202,13 @@ void Tst_ShowOneTstResult (void)
/***** Write answers and solutions *****/
Tst_ShowTestResult (Gbl.Test.NumQsts,TstTimeUTC);
/***** End table *****/
Tbl_EndTable ();
/***** Write total mark of test *****/
if (ICanViewScore)
Tst_ShowTstTotalMark (Gbl.Test.NumQsts,TotalScore);
/***** End table *****/
Tbl_EndTable ();
/***** End box *****/
Box_EndBox ();
}