bump Smarty to 3.1.15

This commit is contained in:
Robert Förster (Dessa)
2013-10-07 23:43:52 +02:00
parent ed08303ec6
commit d74d61826f
143 changed files with 6753 additions and 6180 deletions

View File

@@ -0,0 +1,23 @@
<?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 "''";
}