diff options
Diffstat (limited to 'lib/prado/framework/pradolite.php')
-rw-r--r-- | lib/prado/framework/pradolite.php | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/lib/prado/framework/pradolite.php b/lib/prado/framework/pradolite.php index 6b51484..2c12c05 100644 --- a/lib/prado/framework/pradolite.php +++ b/lib/prado/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() |