Upload version 3.1.20

This commit is contained in:
Uwe Tews
2014-10-18 00:18:11 +02:00
parent d091179e43
commit 0409ab005e
130 changed files with 31419 additions and 4 deletions

View File

@@ -0,0 +1,21 @@
<?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
* @return string with compiled code
*/
function smarty_modifiercompiler_noprint()
{
return "''";
}