Code

Updated smarty
[gosa.git] / gosa-core / include / smarty / sysplugins / smarty_method_isforcecompile.php
1 <?php
3 /**
4 * Smarty method IsForceCompile
5
6 * is forced compiling
7
8 * @package Smarty
9 * @subpackage SmartyMethod
10 * @author Uwe Tews 
11 */
13 /**
14
15 * is forced compiling
16 */
17 function  Smarty_Method_IsForceCompile($smarty)
18     {
19         return $smarty->force_compile;
20     } 
23 ?>