summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)
{