From 07f759fd1210019d9ca112a1f7d6ae0510a9d687 Mon Sep 17 00:00:00 2001 From: "haertl.mike" <> Date: Tue, 11 Nov 2008 10:03:41 +0000 Subject: Fixed Issue #61 --- HISTORY | 1 + framework/Util/TLogRouter.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/HISTORY b/HISTORY index 64241176..299f16f3 100644 --- a/HISTORY +++ b/HISTORY @@ -1,6 +1,7 @@ Version 3.1.4 To be released ============================== BUG: Issue#59 - TPropertyAccess::has() returns false even if the property of an object was found (Carl) +BUG: Issue#61 - TLogRouter throws exception when using external config file (Michael) NEW: Issue#29 - Ability to specify position of popup TDatePicker (Carl) ENH: Issue#36 - Refactored TRatingList/TActiveRatingList, and added some docs (Bradley) ENH: Issue#52 - Upgraded to TinyMCE 3.2.1 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); } -- cgit v1.2.3