From bc5f3c73a2daccf3997b1a9cea4adcd849d39ebd Mon Sep 17 00:00:00 2001 From: Gabriel Jenik Date: Thu, 9 Jul 2020 10:00:14 -0300 Subject: [PATCH] Fixed issue #16450: Timer does not work for dropdown questions (#1467) --- application/helpers/qanda_helper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/helpers/qanda_helper.php b/application/helpers/qanda_helper.php index 9045e273af5..cd6d841e877 100644 --- a/application/helpers/qanda_helper.php +++ b/application/helpers/qanda_helper.php @@ -1397,7 +1397,7 @@ function do_list_dropdown($ia) //Time Limit Code if (trim($aQuestionAttributes['time_limit']) != '') { - return_timer_script($aQuestionAttributes, $ia); + $answer .= return_timer_script($aQuestionAttributes, $ia); } //End Time Limit Code