mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-16 14:05:21 +02:00
23 lines
298 B
PHP
23 lines
298 B
PHP
<?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;
|
|
}
|
|
|
|
?>
|