[*] Core : update to 3.1.8

This commit is contained in:
rGaillard
2012-03-12 09:03:37 +00:00
parent eed36b1bb1
commit 1c9fd0848d
121 changed files with 24710 additions and 0 deletions
@@ -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 "''";
}
?>