Code

Updated smarty
[gosa.git] / gosa-core / include / smarty / sysplugins / smarty_method_enableconfigbooleanize.php
1 <?php
3 /**
4 * Smarty method EnableConfigBooleanize
5
6 * Enable config booleanize mode
7
8 * @package Smarty
9 * @subpackage SmartyMethod
10 * @author Uwe Tews 
11 */
13 /**
14 * Enable config booleanize mode
15 */
16 function  Smarty_Method_EnableConfigBooleanize($smarty)
17 {
18     $smarty->config_booleanize = true;
19     return;
20
22 ?>