fixed initialisation of $this->_plugins in compile_block_tag()

This commit is contained in:
messju
2003-07-03 14:12:01 +00:00
parent f55ca1d583
commit 309532e8e2

View File

@@ -635,7 +635,7 @@ class Smarty_Compiler extends Smarty {
$message = "plugin function $plugin_func() not found in $plugin_file\n";
$have_function = false;
} else {
$this->_plugins['block'][$tag_command] = array($plugin_func, null, null);
$this->_plugins['block'][$tag_command] = array($plugin_func, null, null, null, true);
}
}