projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bb607d3
)
Don't include the horde css files when adding app specific files to the portal.
author
Michael J. Rubinsky
<mrubinsk@horde.org>
Fri, 10 Dec 2010 16:11:07 +0000
(11:11 -0500)
committer
Michael J. Rubinsky
<mrubinsk@horde.org>
Fri, 10 Dec 2010 16:11:07 +0000
(11:11 -0500)
This leads to the files being included multiple times.
horde/services/portal/index.php
patch
|
blob
|
history
diff --git
a/horde/services/portal/index.php
b/horde/services/portal/index.php
index
c5cf8e2
..
862faa9
100644
(file)
--- 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']);
}
}