Update to Smarty 3.1.15
This commit is contained in:
parent
bea18b03e2
commit
1c9cd9208f
119 changed files with 5232 additions and 4641 deletions
|
|
@ -15,17 +15,17 @@
|
|||
* @package Smarty
|
||||
* @subpackage Compiler
|
||||
*/
|
||||
class Smarty_Internal_Nocache_Insert {
|
||||
|
||||
class Smarty_Internal_Nocache_Insert
|
||||
{
|
||||
/**
|
||||
* Compiles code for the {insert} tag into cache file
|
||||
*
|
||||
* @param string $_function insert function name
|
||||
* @param array $_attr array with parameter
|
||||
* @param Smarty_Internal_Template $_template template object
|
||||
* @param string $_script script name to load or 'null'
|
||||
* @param string $_assign optional variable name
|
||||
* @return string compiled code
|
||||
* @param string $_function insert function name
|
||||
* @param array $_attr array with parameter
|
||||
* @param Smarty_Internal_Template $_template template object
|
||||
* @param string $_script script name to load or 'null'
|
||||
* @param string $_assign optional variable name
|
||||
* @return string compiled code
|
||||
*/
|
||||
public static function compile($_function, $_attr, $_template, $_script, $_assign = null)
|
||||
{
|
||||
|
|
@ -45,9 +45,8 @@ class Smarty_Internal_Nocache_Insert {
|
|||
while ($_tpl->parent instanceof Smarty_Internal_Template) {
|
||||
$_tpl = $_tpl->parent;
|
||||
}
|
||||
|
||||
return "/*%%SmartyNocache:{$_tpl->properties['nocache_hash']}%%*/" . $_output . "/*/%%SmartyNocache:{$_tpl->properties['nocache_hash']}%%*/";
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
|
|||
Reference in a new issue