From 99a94db36dd02d53eb9c7912b3f5a713d03467e0 Mon Sep 17 00:00:00 2001 From: "Michael J. Rubinsky" Date: Fri, 10 Dec 2010 11:11:07 -0500 Subject: [PATCH] Don't include the horde css files when adding app specific files to the portal. This leads to the files being included multiple times. --- horde/services/portal/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/horde/services/portal/index.php b/horde/services/portal/index.php index c5cf8e2cc..862faa983 100644 --- a/horde/services/portal/index.php +++ b/horde/services/portal/index.php @@ -53,7 +53,7 @@ $layout_html = $view->toHtml(); $css = $injector->getInstance('Horde_Themes_Css'); foreach ($view->getApplications() as $app) { - foreach ($css->getStylesheets('', array('app' => $app)) as $val) { + foreach ($css->getStylesheets('', array('app' => $app, 'nohorde' => true)) as $val) { $css->addStylesheet($val['fs'], $val['uri']); } } -- 2.11.0