Index: branches/5.2.x/core/kernel/application.php =================================================================== diff -u -N -r14654 -r14664 --- branches/5.2.x/core/kernel/application.php (.../application.php) (revision 14654) +++ branches/5.2.x/core/kernel/application.php (.../application.php) (revision 14664) @@ -1,6 +1,6 @@ registerClass('PhrasesCache', KERNEL_PATH . '/languages/phrases_cache.php', 'kPhraseCache'); $this->registerClass('kTempTablesHandler', KERNEL_PATH . '/utility/temp_handler.php'); $this->registerClass('kValidator', KERNEL_PATH . '/utility/validator.php'); + $this->registerClass('kOpenerStack', KERNEL_PATH . '/utility/opener_stack.php'); $this->registerClass('kUnitConfigReader', KERNEL_PATH . '/utility/unit_config_reader.php'); @@ -1314,14 +1315,16 @@ } /** - * Stores variable $val in session under name $var - * - * Use this method to store variable in session. Later this variable could be recalled. - * @see RecallVar - * @access public - * @param string $var Variable name - * @param mixed $val Variable value - */ + * Stores variable $val in session under name $var + * + * Use this method to store variable in session. Later this variable could be recalled. + * + * @param string $var Variable name + * @param mixed $val Variable value + * @param bool $optional + * @see kApplication::RecallVar() + * @access public + */ function StoreVar($var, $val, $optional = false) { $session =& $this->recallObject('Session');