diff options
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | framework/Util/TLogRouter.php | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -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);
}
|