// Update to Smarty 3.1.6

This commit is contained in:
rGaillard
2011-12-13 13:53:36 +00:00
parent 6be0347885
commit d8d3e638eb
120 changed files with 24388 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsModifierCompiler
*/
/**
* Smarty noprint modifier plugin
*
* Type: modifier<br>
* Name: noprint<br>
* Purpose: return an empty string
*
* @author Uwe Tews
* @param array $params parameters
* @return string with compiled code
*/
function smarty_modifiercompiler_noprint($params, $compiler)
{
return "''";
}
?>