MDL-27825 Improved check of themedesignermode to prevent errors if it isn't set

This commit is contained in:
Sam Hemelryk
2011-06-14 15:49:33 +08:00
parent 57e034c094
commit 9abec7278b
+2 -2
View File
@@ -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();