MDL-20204 adding missing theme render prefix for current theme - thanks dvpdiner2

This commit is contained in:
Petr Skoda
2009-12-29 12:23:39 +00:00
parent d6b64d1583
commit 596af93a46
+1 -1
View File
@@ -499,7 +499,7 @@ class theme_config {
public function renderer_prefixes() {
global $CFG; // just in case the included files need it
$prefixes = array();
$prefixes = array('theme_'.$this->name);
foreach ($this->parent_configs as $parent) {
$prefixes[] = 'theme_'.$parent->name;