Files
smarty/libs/sysplugins/method.getvariablefilter.php
Uwe.Tews d2d8c8925b - removed all internal calls of Smarty::instance()
- fixed code in double quoted strings
2009-08-08 17:28:23 +00:00

24 lines
329 B
PHP

<?php
/**
* Smarty method getVariableFilter
*
* get status of filter on variable output
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Smarty class getVariableFilter
*
* get status of filter on variable output
*/
function getVariableFilter($smarty)
{
return $smarty->variable_filter;
}
?>