From 44b8ec3ad302ed1eb241aac0313951f761aaad8f Mon Sep 17 00:00:00 2001 From: "ctrlaltca@gmail.com" <> Date: Wed, 1 Feb 2012 15:50:05 +0000 Subject: fix: css registration upon callback was missing some files from getting rendered --- framework/Web/UI/TClientScriptManager.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/framework/Web/UI/TClientScriptManager.php b/framework/Web/UI/TClientScriptManager.php index 91537c45..045169f1 100644 --- a/framework/Web/UI/TClientScriptManager.php +++ b/framework/Web/UI/TClientScriptManager.php @@ -447,7 +447,8 @@ class TClientScriptManager extends TApplicationComponent */ public function getStyleSheetUrls() { - $stylesheets = array_values($this->_styleSheets); + + $stylesheets = array_values(array_merge($this->_styleSheetFiles, $this->_styleSheets)); foreach(Prado::getApplication()->getAssetManager()->getPublished() as $path=>$url) if (substr($url,strlen($url)-4)=='.css') -- cgit v1.2.3