diff options
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | framework/I18N/TGlobalization.php | 8 |
2 files changed, 5 insertions, 4 deletions
@@ -3,6 +3,7 @@ Version 3.3.2 xxx, 2016 BUG: Issue #592 - Fix TActiveMultiView brokwn on 3.3.1 (ctrlaltca) BUG: Issue #588 - Fix reading values of controls inside TJuiDialog (ctrlaltca) BUG: Issue #597 - TDatePicker::getDateFromPostData selected month issue (Sachat) +BUG: Issue #599 - Allowing translation message cache to be initialized (emkael) ENH: Issue #591 - Support for hyphenated attributes via <prop:*></prop:*> template syntax (emkael) ENH: Issue #594 - Added ability to check for subcontrols using isset(), empty() (jojoinside) ENH: Allow TStyle behaviors (LCSKJ) diff --git a/framework/I18N/TGlobalization.php b/framework/I18N/TGlobalization.php index 2965ad1b..9a57ec3b 100644 --- a/framework/I18N/TGlobalization.php +++ b/framework/I18N/TGlobalization.php @@ -225,10 +225,10 @@ class TGlobalization extends TModule chmod($config['cache'], PRADO_CHMOD); //make it deletable } } - else - { - unset($config['cache']); - } + else + { + unset($config['cache']); + } $this->_translation = $config; } |