game/onyx2/modules/templates/smarty/sysplugins/smarty_method_disablecaching.php

23 lines
243 B
PHP

<?php
/**
* Smarty method disableCaching
*
* Disable caching
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Disable caching
*/
function DisableCaching()
{
$this->smarty->caching = false;
return;
}
?>