From 596af93a469fed619fd5d677ea007c425525386a Mon Sep 17 00:00:00 2001 From: Petr Skoda Date: Tue, 29 Dec 2009 12:23:39 +0000 Subject: [PATCH] MDL-20204 adding missing theme render prefix for current theme - thanks dvpdiner2 --- lib/outputlib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/outputlib.php b/lib/outputlib.php index c643030921..21782c6cb0 100644 --- a/lib/outputlib.php +++ b/lib/outputlib.php @@ -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; -- 2.39.5