14 lines
159 B
PHP
14 lines
159 B
PHP
<?php
|
|
|
|
/**
|
|
* Smarty plugin.
|
|
*/
|
|
|
|
/**
|
|
* Ignores result, do not print anything.
|
|
*/
|
|
function smarty_modifier_silent($string, $value = null)
|
|
{
|
|
return '';
|
|
}
|