diff options
author | Fabio Bas <ctrlaltca@gmail.com> | 2016-08-23 12:37:19 +0200 |
---|---|---|
committer | Fabio Bas <ctrlaltca@gmail.com> | 2016-08-23 12:37:19 +0200 |
commit | 8978869afd5cb31cc210f79eee6ecedbe8c47333 (patch) | |
tree | 454f057ef4b0c5d418b6d7dfb6490a9ff6776e6b /framework/pradolite.php | |
parent | 9f140f6e6d0e604b485ba8263be3065e236790c8 (diff) |
Prepare release 3.3.2
Diffstat (limited to 'framework/pradolite.php')
-rw-r--r-- | framework/pradolite.php | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/framework/pradolite.php b/framework/pradolite.php index 6b514845..2c12c05f 100644 --- a/framework/pradolite.php +++ b/framework/pradolite.php @@ -1,7 +1,7 @@ <?php /** * File Name: pradolite.php - * Last Update: 2016/06/08 16:06:00 + * Last Update: 2016/08/23 12:36:39 * Generated By: buildscripts/phpbuilder/build.php * * This file is used in lieu of prado.php to boost PRADO application performance. @@ -25,7 +25,7 @@ class PradoBase protected static $classExists = array(); public static function getVersion() { - return '3.3.1'; + return '3.3.2'; } public static function initErrorHandlers() { @@ -4825,10 +4825,7 @@ class TControl extends TApplicationComponent implements IRenderable, IBindable if($this->_trackViewState) { unset($this->_tempState[$key]); - if($value===$defaultValue) - unset($this->_viewState[$key]); - else - $this->_viewState[$key]=$value; + $this->_viewState[$key]=$value; } else { @@ -10304,10 +10301,10 @@ class TGlobalization extends TModule $config['cache']); chmod($config['cache'], PRADO_CHMOD); } } - else - { - unset($config['cache']); - } + else + { + unset($config['cache']); + } $this->_translation = $config; } public function getTranslationCatalogue() |