Files
smarty/libs/sysplugins/smarty_method_disablecaching.php

23 lines
258 B
PHP
Raw Normal View History

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