Files
smarty/libs/sysplugins/method.enableconfigbooleanize.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

23 lines
297 B
PHP

<?php
/**
* Smarty method enableConfigBooleanize
*
* Enable config booleanize mode
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Enable config booleanize mode
*/
function enableConfigBooleanize($smarty)
{
$smarty->config_booleanize = true;
return;
}
?>