Smarty update to 4.3.0

This commit is contained in:
Clemens Schwaighofer
2023-01-05 10:38:51 +09:00
parent b6a0937e0c
commit 90e418ba24
463 changed files with 698 additions and 21781 deletions

View File

@@ -0,0 +1,20 @@
<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsModifierCompiler
*/
/**
* Smarty noprint modifier plugin
* Type: modifier
* Name: noprint
* Purpose: return an empty string
*
* @author Uwe Tews
* @return string with compiled code
*/
function smarty_modifiercompiler_noprint()
{
return "''";
}