Files
smarty/libs/sysplugins/smarty_method_disableconfigbooleanize.php
T

23 lines
308 B
PHP
Raw Normal View History

2009-04-02 12:24:50 +00:00
<?php
/**
* Smarty method disableConfigBooleanize
*
* Disable config booleanize mode
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Disable config booleanize mode
*/
function disableConfigBooleanize($smarty)
{
$this->smarty->config_booleanize = false;
return;
2009-04-02 12:24:50 +00:00
}
?>