From 45ff82cf100c788db0edcab2672b1a3c244facd6 Mon Sep 17 00:00:00 2001 From: messju Date: Mon, 31 Mar 2003 21:57:41 +0000 Subject: [PATCH] fixed flaw when generating an error for missing postfilter --- 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 451efc78..066448ef 100644 --- a/libs/Smarty_Compiler.class.php +++ b/libs/Smarty_Compiler.class.php @@ -327,7 +327,7 @@ class Smarty_Compiler extends Smarty { $template_compiled = $postfilter[0]($template_compiled, $this); $this->_plugins['postfilter'][$filter_name][3] = true; } else { - $this->_trigger_plugin_error("Smarty plugin error: postfilter '$filter_name' is not implemented"); + $this->_trigger_fatal_error("Smarty plugin error: postfilter '$filter_name' is not implemented"); } } }