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

23 lines
243 B
PHP
Raw Normal View History

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