diff options
-rw-r--r-- | framework/Web/UI/TClientScriptManager.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/framework/Web/UI/TClientScriptManager.php b/framework/Web/UI/TClientScriptManager.php index 09e240c2..200bcba5 100644 --- a/framework/Web/UI/TClientScriptManager.php +++ b/framework/Web/UI/TClientScriptManager.php @@ -162,7 +162,8 @@ class TClientScriptManager extends TApplicationComponent else { // In debug mode, we add 1 <script> line by file - $baseUrl=$this->getPradoScriptAssetUrl(); + $base = Prado::getFrameworkPath().DIRECTORY_SEPARATOR.self::SCRIPT_PATH; + list($path,$baseUrl)=$this->getPackagePathUrl($base); $packagesUrl=array(); foreach ($packages as $p) { |