From aa0daaedfd3c4df884680ebe7d351dca37ae91f7 Mon Sep 17 00:00:00 2001 From: CaMer0n Date: Mon, 14 May 2012 19:44:17 +0000 Subject: [PATCH] Bugfix --- e107_handlers/e107_class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/e107_handlers/e107_class.php b/e107_handlers/e107_class.php index 8bfc8fe80..7962caca2 100644 --- a/e107_handlers/e107_class.php +++ b/e107_handlers/e107_class.php @@ -1397,7 +1397,7 @@ class e107 // $type is plugin name default: // data is e.g. 'jslib/myplug.js' - if(!$this->isInstalled($type)) return; + if(!self::isInstalled($type)) return; if(null !== $zone) $jshandler->requirePluginLib($type, $data, $zone); else $jshandler->requirePluginLib($type, $data); break; @@ -1440,7 +1440,7 @@ class e107 // $type is plugin name default: // data is e.g. 'css/myplug.css' - if($this->isInstalled($type)) $jshandler->pluginCSS($type, $data, $media, $preComment, $postComment); + if(self::isInstalled($type)) $jshandler->pluginCSS($type, $data, $media, $preComment, $postComment); break; } }