From bd50ae37992711a2cde7323a46b4e064b09e1bb9 Mon Sep 17 00:00:00 2001 From: Hugo Loza Date: Mon, 28 Feb 2011 21:40:49 +0000 Subject: [PATCH] css from plugins will still outside the main css file --- gulliver/system/class.g.php | 5 ----- gulliver/system/class.headPublisher.php | 10 +++++----- 2 files changed, 5 insertions(+), 10 deletions(-) diff --git a/gulliver/system/class.g.php b/gulliver/system/class.g.php index 46b860607..b99c294b9 100644 --- a/gulliver/system/class.g.php +++ b/gulliver/system/class.g.php @@ -1104,11 +1104,6 @@ class G } } return $output; - - - - - } /** diff --git a/gulliver/system/class.headPublisher.php b/gulliver/system/class.headPublisher.php index 9e40815e9..4bd0a9dce 100644 --- a/gulliver/system/class.headPublisher.php +++ b/gulliver/system/class.headPublisher.php @@ -314,11 +314,11 @@ class headPublisher { */ // Load external/plugin css // NOTE is necesary to move this to decorator server - //$oPluginRegistry = & PMPluginRegistry::getSingleton (); - //$registeredCss=$oPluginRegistry->getRegisteredCss(); - //foreach($registeredCss as $cssFile){ - // $script .= " \n"; - //} + $oPluginRegistry = & PMPluginRegistry::getSingleton (); + $registeredCss=$oPluginRegistry->getRegisteredCss(); + foreach($registeredCss as $cssFile){ + $script .= " \n"; + } return $script; }