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

This commit is contained in:
Jake Dallimore 2020-12-14 11:30:32 +08:00
commit cef3216f2a

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();