From: Michael M Slusarz Date: Tue, 9 Nov 2010 08:43:09 +0000 (-0700) Subject: In static context, not object context X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=49f1c92a295582e0f54ea58efe06c94ee9e29c34;p=horde.git In static context, not object context --- diff --git a/framework/Core/lib/Horde/Themes.php b/framework/Core/lib/Horde/Themes.php index c051a07d2..4d13a6900 100644 --- a/framework/Core/lib/Horde/Themes.php +++ b/framework/Core/lib/Horde/Themes.php @@ -27,7 +27,7 @@ class Horde_Themes */ static public function addStylesheet($file, $url) { - $this->_cssFiles[$file] = $url; + self::$_cssFiles[$file] = $url; } /** @@ -227,7 +227,7 @@ class Horde_Themes } /* Add additional stylesheets added by code. */ - $css = array_merge($css, $this->_cssFiles); + $css = array_merge($css, self::$_cssFiles); /* Add user-defined additional stylesheets. */ try {