Primer commit del sistema avantika sin cambios
This commit is contained in:
22
libs/sysplugins/smarty_method_disableconfigbooleanize.php
Executable file
22
libs/sysplugins/smarty_method_disableconfigbooleanize.php
Executable file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Smarty method DisableConfigBooleanize
|
||||
*
|
||||
* Disable config booleanize mode
|
||||
*
|
||||
* @package Smarty
|
||||
* @subpackage SmartyMethod
|
||||
* @author Uwe Tews
|
||||
*/
|
||||
|
||||
/**
|
||||
* Disable config booleanize mode
|
||||
*/
|
||||
function Smarty_Method_DisableConfigBooleanize($smarty)
|
||||
{
|
||||
$this->smarty->config_booleanize = false;
|
||||
return;
|
||||
}
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user