summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxue <>2006-05-19 02:39:11 +0000
committerxue <>2006-05-19 02:39:11 +0000
commit1db6ad16b753eb57049e9569f50d9a2c70379a07 (patch)
tree01bb411380a736be96ca255df74ebd46f3d9702f
parentd1db433e8c3feeec1db1d89e2acdcc4277aa49e7 (diff)
Fixed #37.
-rw-r--r--HISTORY1
-rw-r--r--framework/Web/Services/TPageService.php1
2 files changed, 2 insertions, 0 deletions
diff --git a/HISTORY b/HISTORY
index a9661786..9dc9b436 100644
--- a/HISTORY
+++ b/HISTORY
@@ -1,5 +1,6 @@
Version 3.0.1 June 1, 2006
==========================
+BUG: Ticket#37 - Changes of config files do not trigger cache update (Qiang)
BUG: Ticket#44 - THtmlArea (tiny_mce) not working on some systems (Qiang)
BUG: Ticket#167 - TSecurityManager issues warning when trying to encrypt/decrypt strings (Qiang)
BUG: Ticket#179 - CGI incompatibility causing clientscripts.php failure (Qiang)
diff --git a/framework/Web/Services/TPageService.php b/framework/Web/Services/TPageService.php
index 54112fb1..452639c1 100644
--- a/framework/Web/Services/TPageService.php
+++ b/framework/Web/Services/TPageService.php
@@ -265,6 +265,7 @@ class TPageService extends TService
$configCached=false;
$paths=explode('.',$pagePath);
array_pop($paths);
+ array_push($paths,'');
$configPath=$this->getBasePath();
foreach($paths as $path)
{