Code

Updated smarty
[gosa.git] / gosa-core / include / smarty / sysplugins / smarty_method_disablecaching.php
1 <?php
3 /**
4 * Smarty method DisableCaching
5
6 * Disable caching
7
8 * @package Smarty
9 * @subpackage SmartyMethod
10 * @author Uwe Tews 
11 */
13 /**
14 * Disable caching
15 */
16 function  Smarty_Method_DisableCaching()
17 {
18     $this->smarty->caching = false;
19     return;
20
22 ?>