Files
smarty/libs/sysplugins/method.enablevariablefilter.php

23 lines
298 B
PHP
Raw Normal View History

<?php
/**
* Smarty method enableVariableFilter
*
* Enable filter on variable output
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Enable filter on variable output
*/
function enableVariableFilter($smarty)
{
$smarty->variable_filter = true;
return;
}
?>