Code

Updated smarty
[gosa.git] / gosa-core / include / smarty / sysplugins / smarty_method_disabledebuggingurlctrl.php
1 <?php
3 /**
4 * Smarty method DisableDebuggingUrlCtrl
5
6 * Disable possibility to Disable debugging by SMARTY_DEBUG attribute
7
8 * @package Smarty
9 * @subpackage SmartyMethod
10 * @author Uwe Tews 
11 */
13 /**
14 * Disable possibility to Disable debugging by SMARTY_DEBUG attribute
15 */
16 function  Smarty_Method_DisableDebuggingUrlCtrl($smarty)
17     {
18         $smarty->debugging_ctrl = 'none';
19         return;
20     } 
22 ?>