From: Michael J. Rubinsky Date: Tue, 9 Mar 2010 04:37:26 +0000 (-0500) Subject: Horde::getStylesheets --> Horde_Themes::getStylesheets() X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=cf3d1971e5ec7f08ddf19f4b675d4af8a5ba0a4a;p=horde.git Horde::getStylesheets --> Horde_Themes::getStylesheets() --- diff --git a/horde/services/portal/index.php b/horde/services/portal/index.php index 0c9759733..f48d76d39 100644 --- a/horde/services/portal/index.php +++ b/horde/services/portal/index.php @@ -61,7 +61,7 @@ $layout_html = $view->toHtml(); $horde_css_stylesheets = array(); foreach ($view->getApplications() as $app) { - $horde_css_stylesheets = array_merge($horde_css_stylesheets, Horde::getStylesheets('', array('app' => $app))); + $horde_css_stylesheets = array_merge($horde_css_stylesheets, Horde_Themes::getStylesheets('', array('app' => $app))); } $linkTags = $view->getLinkTags(); diff --git a/imp/view.php b/imp/view.php index 01ba21e7a..c63de4dec 100644 --- a/imp/view.php +++ b/imp/view.php @@ -262,7 +262,7 @@ case 'print_attach': } $css = ''; - foreach (Horde::getStylesheets() as $val) { + foreach (Horde_Themes::getStylesheets() as $val) { $css .= file_get_contents($val['f']); }