MDL-27825 Improved check of themedesignermode to prevent errors if it isn't set
This commit is contained in:
+2
-2
@@ -95,7 +95,7 @@ foreach ($themes as $themename => $themedir) {
|
||||
//obsoleted or broken theme, just skip for now
|
||||
continue;
|
||||
}
|
||||
if (!$CFG->themedesignermode && $theme->hidefromselector) {
|
||||
if (empty($CFG->themedesignermode) && $theme->hidefromselector) {
|
||||
// The theme doesn't want to be shown in the theme selector and as theme
|
||||
// designer mode is switched off we will respect that decision.
|
||||
continue;
|
||||
@@ -146,4 +146,4 @@ foreach ($themes as $themename => $themedir) {
|
||||
|
||||
echo html_writer::table($table);
|
||||
|
||||
echo $OUTPUT->footer();
|
||||
echo $OUTPUT->footer();
|
||||
|
||||
Reference in New Issue
Block a user