MDL-32684 lib/pagelib: adds break; statements to theme order in lib/pagelib.php

This commit is contained in:
Mary Evans
2012-05-02 01:42:34 +01:00
parent 446dbeed7a
commit 3dde1fcafb
+4
View File
@@ -1306,6 +1306,7 @@ class moodle_page {
if (!empty($CFG->allowcoursethemes) && !empty($this->_course->theme) && $this->devicetypeinuse == 'default') {
return $this->_course->theme;
}
break;
case 'category':
if (!empty($CFG->allowcategorythemes) && $this->devicetypeinuse == 'default') {
@@ -1316,11 +1317,13 @@ class moodle_page {
}
}
}
break;
case 'session':
if (!empty($SESSION->theme)) {
return $SESSION->theme;
}
break;
case 'user':
if (!empty($CFG->allowuserthemes) && !empty($USER->theme) && $this->devicetypeinuse == 'default') {
@@ -1330,6 +1333,7 @@ class moodle_page {
return $USER->theme;
}
}
break;
case 'site':
if ($mnetpeertheme) {