From 02955a84d1754e4796fca52bedd7dd0f30f197bd Mon Sep 17 00:00:00 2001 From: Bas Brands Date: Fri, 14 Dec 2018 16:28:36 +0100 Subject: [PATCH] MDL-64392 core_question: flexbox compatible separator for question types * the br tag does not work well in a flexbox context, a 100% with div works in both clean and boost. --- question/import_form.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/question/import_form.php b/question/import_form.php index b9e46198ff4..ad2cc18feb6 100644 --- a/question/import_form.php +++ b/question/import_form.php @@ -58,7 +58,7 @@ class question_import_form extends moodleform { if (get_string_manager()->string_exists('pluginname_help', 'qformat_' . $shortname)) { $separator .= $OUTPUT->help_icon('pluginname', 'qformat_' . $shortname); } - $separator .= '
'; + $separator .= '
'; $separators[] = $separator; }