From: Michael M Slusarz Date: Thu, 18 Nov 2010 16:42:33 +0000 (-0700) Subject: Bug #9395: Return array from getStylesheetUrls() X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=a813020cde5ffefe12257eaf1e7657ecfc0cf3f8;p=horde.git Bug #9395: Return array from getStylesheetUrls() --- diff --git a/framework/Core/lib/Horde/Themes/Css.php b/framework/Core/lib/Horde/Themes/Css.php index 0e7cdc2ec..b307bc071 100644 --- a/framework/Core/lib/Horde/Themes/Css.php +++ b/framework/Core/lib/Horde/Themes/Css.php @@ -57,7 +57,6 @@ class Horde_Themes_Css $themesuri = $registry->get('themesuri'); $css = $this->getStylesheets(isset($options['theme']) ? $options['theme'] : $prefs->getValue('theme'), $options); - $css_out = array(); $cache_type = empty($conf['cachecss']) ? 'none' @@ -120,7 +119,7 @@ class Horde_Themes_Css } } - return $css_url; + return array($css_url); } /**