diff options
author | xue <> | 2006-04-21 10:53:19 +0000 |
---|---|---|
committer | xue <> | 2006-04-21 10:53:19 +0000 |
commit | e57fc66ee3f5259b4f7cbd18a1cd0f6da6176f5d (patch) | |
tree | d813827b29a5d417306930f0723cf0ceb3392377 | |
parent | a7f8344cc6d2067352c524e5d2d2fcdc58b71cab (diff) |
Fixed #139.
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | framework/Web/UI/TThemeManager.php | 1 |
2 files changed, 1 insertions, 1 deletions
@@ -4,6 +4,7 @@ BUG: Ticket#131 - TImageMap and TLinkButton continue to postback even client val BUG: Ticket#135 - TBrowserLogRoute reports wrong timings (Qiang)
BUG: Ticket#137 - The JavasciptLogger does not work (Qiang)
BUG: Ticket#138 - missing file in TDataGrid (Qiang)
+BUG: Ticket#139 - TThemeManager::setBasePath() should understand an alias path (Qiang)
BUG: Non-control components can now use expressions in their properties (Qiang)
BUG: TControl.Visible did not make use of overriden getVisible() (Qiang)
BUG: TWizard did not stop navigation upon a validation failure (Qiang)
diff --git a/framework/Web/UI/TThemeManager.php b/framework/Web/UI/TThemeManager.php index 23189cae..83032684 100644 --- a/framework/Web/UI/TThemeManager.php +++ b/framework/Web/UI/TThemeManager.php @@ -107,7 +107,6 @@ class TThemeManager extends TModule $this->_basePath=Prado::getPathOfAlias($value);
if($this->_basePath===null || !is_dir($this->_basePath))
throw new TInvalidDataValueException('thememanager_basepath_invalid',$value);
- $this->_basePath=$value;
}
}
|