diff options
author | rvelices <rv-github@modusoptimus.com> | 2008-09-16 10:17:20 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2008-09-16 10:17:20 +0000 |
commit | 159fbc8377832ff8e931cef0413ee571c494ac84 (patch) | |
tree | 7b4446529a561ceef311a8d07fcdb7ce5449861b /include/smarty/libs/Smarty.class.php | |
parent | eef8aa8838ae6fede0dce3b4df65d140e745e830 (diff) |
- upgrade smarty to latest release 2.6.20
git-svn-id: http://piwigo.org/svn/trunk@2538 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/smarty/libs/Smarty.class.php')
-rw-r--r-- | include/smarty/libs/Smarty.class.php | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/include/smarty/libs/Smarty.class.php b/include/smarty/libs/Smarty.class.php index 6b893dec8..6ac6a04b2 100644 --- a/include/smarty/libs/Smarty.class.php +++ b/include/smarty/libs/Smarty.class.php @@ -27,10 +27,10 @@ * @author Monte Ohrt <monte at ohrt dot com> * @author Andrei Zmievski <andrei@php.net> * @package Smarty - * @version 2.6.19 + * @version 2.6.20 */ -/* $Id$ */ +/* $Id: Smarty.class.php 2722 2007-06-18 14:29:00Z danilo $ */ /** * DIR_SEP isn't used anymore, but third party apps might @@ -464,7 +464,7 @@ class Smarty * * @var string */ - var $_version = '2.6.19'; + var $_version = '2.6.20'; /** * current template inclusion depth @@ -1057,7 +1057,7 @@ class Smarty } else { // var non-existant, return valid reference $_tmp = null; - return $_tmp; + return $_tmp; } } @@ -1116,7 +1116,7 @@ class Smarty function fetch($resource_name, $cache_id = null, $compile_id = null, $display = false) { static $_cache_info = array(); - + $_smarty_old_error_level = $this->debugging ? error_reporting() : error_reporting(isset($this->error_reporting) ? $this->error_reporting : error_reporting() & ~E_NOTICE); @@ -1940,10 +1940,10 @@ class Smarty { return eval($code); } - + /** * Extracts the filter name from the given callback - * + * * @param callback $function * @return string */ @@ -1958,7 +1958,7 @@ class Smarty return $function; } } - + /**#@-*/ } |