Code

Updated smarty
[gosa.git] / gosa-core / include / smarty / sysplugins / smarty_method_disablecompilecheck.php
1 <?php
3 /**
4 * Smarty method DisableCompileCheck
5
6 * Disable compile checking
7
8 * @package Smarty
9 * @subpackage SmartyMethod
10 * @author Uwe Tews 
11 */
13 /**
14 * Disable compile checking
15
16 * @param object $smarty 
17 */
18 function  Smarty_Method_DisableCompileCheck($smarty)
19 {
20     $smarty->compile_check = false;
21     return;
22
24 ?>