append "@" to _run_mod_handler to supress warnings

This commit is contained in:
mohrt
2003-03-15 18:27:30 +00:00
parent 73b0a0604a
commit 6f3de10273
2 changed files with 3 additions and 1 deletions

1
NEWS
View File

@@ -1,3 +1,4 @@
- append "@" to _run_mod_handler to supress warnings (Monte)
- fix problem with escaped double quotes (Monte) - fix problem with escaped double quotes (Monte)
- fix html_radios to not return an array (Monte) - fix html_radios to not return an array (Monte)
- fixed length in modifier.truncate.php (messju) - fixed length in modifier.truncate.php (messju)

View File

@@ -1641,7 +1641,8 @@ class Smarty_Compiler extends Smarty {
else else
$modifier_args = ''; $modifier_args = '';
$output = "\$this->_run_mod_handler('$modifier_name', $map_array, $output$modifier_args)";
$output = "@\$this->_run_mod_handler('$modifier_name', $map_array, $output$modifier_args)";
} }
} }