From 49f1c92a295582e0f54ea58efe06c94ee9e29c34 Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Tue, 9 Nov 2010 01:43:09 -0700 Subject: [PATCH] In static context, not object context --- framework/Core/lib/Horde/Themes.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 { -- 2.11.0