summaryrefslogtreecommitdiff
path: root/framework/TApplication.php
diff options
context:
space:
mode:
authorcarlgmathisen <>2008-12-01 13:37:30 +0000
committercarlgmathisen <>2008-12-01 13:37:30 +0000
commit84558ef6688c0f45a2e7af5096764bbe02bc03d9 (patch)
treeb61382471031b13ab4b3a9450ba1d00a84e67569 /framework/TApplication.php
parent3ed4783b00a6bc16f25150f463bb437bddcfeebb (diff)
Issue 75 - TApplication::setRuntimePath() to update uniqueID and cacheFile
Diffstat (limited to 'framework/TApplication.php')
-rw-r--r--framework/TApplication.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/framework/TApplication.php b/framework/TApplication.php
index 03ca3f05..e21bd4e7 100644
--- a/framework/TApplication.php
+++ b/framework/TApplication.php
@@ -577,6 +577,10 @@ class TApplication extends TComponent
public function setRuntimePath($value)
{
$this->_runtimePath=$value;
+ if($cacheConfig)
+ $this->_cacheFile=$this->_runtimePath.DIRECTORY_SEPARATOR.self::CONFIGCACHE_FILE;
+ // generates unique ID by hashing the runtime path
+ $this->_uniqueID=md5($this->_runtimePath);
}
/**