summaryrefslogtreecommitdiff
path: root/framework/Web/UI/TAssetManager.php
diff options
context:
space:
mode:
authorxue <>2006-02-14 02:48:11 +0000
committerxue <>2006-02-14 02:48:11 +0000
commit9e17c72bc1c6f917f032b61a16907c81ac49f322 (patch)
treeedaf191a37873ae0c612a5f5e93a421925ac0830 /framework/Web/UI/TAssetManager.php
parentf5e5fddf2b624ba00933b7d22724be1e80741cb2 (diff)
Fixed a bug about base url calculation.
Diffstat (limited to 'framework/Web/UI/TAssetManager.php')
-rw-r--r--framework/Web/UI/TAssetManager.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Web/UI/TAssetManager.php b/framework/Web/UI/TAssetManager.php
index d9a0bc4c..3e341a5e 100644
--- a/framework/Web/UI/TAssetManager.php
+++ b/framework/Web/UI/TAssetManager.php
@@ -85,7 +85,7 @@ class TAssetManager extends TModule
if(!is_writable($this->_basePath) || !is_dir($this->_basePath))
throw new TConfigurationException('assetmanager_basepath_invalid',$this->_basePath);
if($this->_baseUrl===null)
- $this->_baseUrl=rtrim(dirname($application->getRequest()->getApplicationPath()),'/').'/'.self::DEFAULT_BASEPATH;
+ $this->_baseUrl=rtrim(dirname($application->getRequest()->getApplicationPath()),'/\\').'/'.self::DEFAULT_BASEPATH;
$application->getService()->setAssetManager($this);
$this->_initialized=true;
}