diff options
Diffstat (limited to 'framework')
-rw-r--r-- | framework/PradoBase.php | 2 | ||||
-rw-r--r-- | framework/Web/Javascripts/source/prado/prado.js | 2 | ||||
-rw-r--r-- | framework/pradolite.php | 17 |
3 files changed, 9 insertions, 12 deletions
diff --git a/framework/PradoBase.php b/framework/PradoBase.php index 34f8bf0f..f6c0312f 100644 --- a/framework/PradoBase.php +++ b/framework/PradoBase.php @@ -69,7 +69,7 @@ class PradoBase */ public static function getVersion() { - return '3.3.1'; + return '3.3.2'; } /** diff --git a/framework/Web/Javascripts/source/prado/prado.js b/framework/Web/Javascripts/source/prado/prado.js index 3778903e..20005377 100644 --- a/framework/Web/Javascripts/source/prado/prado.js +++ b/framework/Web/Javascripts/source/prado/prado.js @@ -271,7 +271,7 @@ var Prado = * Version of Prado clientscripts * @var Version */ - Version: '3.3.1', + Version: '3.3.2', /** * Registry for Prado components 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() |