diff options
author | haertl.mike <> | 2008-11-11 10:03:41 +0000 |
---|---|---|
committer | haertl.mike <> | 2008-11-11 10:03:41 +0000 |
commit | 07f759fd1210019d9ca112a1f7d6ae0510a9d687 (patch) | |
tree | ca94cd112f6fd901c118526006b1275da276cbc0 /framework/Util | |
parent | 15161da7755a8d74853ccae0966afa22d9830b07 (diff) |
Fixed Issue #61
Diffstat (limited to 'framework/Util')
-rw-r--r-- | framework/Util/TLogRouter.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Util/TLogRouter.php b/framework/Util/TLogRouter.php index f55b7620..aa772194 100644 --- a/framework/Util/TLogRouter.php +++ b/framework/Util/TLogRouter.php @@ -124,7 +124,7 @@ class TLogRouter extends TModule */
public function setConfigFile($value)
{
- if(($this->_configFile=Prado::getPathOfNamespace($value,self::LOG_FILE_EXT))===null)
+ if(($this->_configFile=Prado::getPathOfNamespace($value,self::CONFIG_FILE_EXT))===null)
throw new TConfigurationException('logrouter_configfile_invalid',$value);
}
|