Code

Updated smarty
[gosa.git] / gosa-core / include / smarty / sysplugins / smarty_method_disableconfigreadhidden.php
1 <?php
3 /**
4 * Smarty method DisableConfigReadHidden
5
6 * Disable config read hidden mode
7
8 * @package Smarty
9 * @subpackage SmartyMethod
10 * @author Uwe Tews 
11 */
13 /**
14 * Disable config read hidden mode
15 */
16 function  Smarty_Method_DisableConfigReadHidden ($smarty)
17 {
18     $this->smarty->config_read_hidden = false;
19     return;
20
21 ?>