Merge branch 'MDL-70324-3.11' of https://github.com/JBThong/moodle into MOODLE_311_STABLE

This commit is contained in:
Jake Dallimore
2020-12-14 11:29:57 +08:00
+1 -1
View File
@@ -432,7 +432,7 @@ abstract class question_engine {
public static function get_all_response_file_areas() {
$variables = array();
foreach (question_bank::get_all_qtypes() as $qtype) {
$variables += $qtype->response_file_areas();
$variables = array_merge($variables, $qtype->response_file_areas());
}
$areas = array();