From 9390ce38d5599b67d391ab339dee06cf6a9d732c Mon Sep 17 00:00:00 2001 From: messju Date: Fri, 9 May 2003 19:46:37 +0000 Subject: [PATCH] fixed warning due to missing param to _execute_core_function() --- libs/Smarty_Compiler.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/Smarty_Compiler.class.php b/libs/Smarty_Compiler.class.php index 7da3340f..13da43dd 100644 --- a/libs/Smarty_Compiler.class.php +++ b/libs/Smarty_Compiler.class.php @@ -352,7 +352,7 @@ class Smarty_Compiler extends Smarty { } if ($this->_init_smarty_vars) { - $template_header .= "_execute_core_function('assign_smarty_interface'); ?>\n"; + $template_header .= "_execute_core_function('assign_smarty_interface', \$params=null); ?>\n"; $this->_init_smarty_vars = false; }