mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-16 14:05:21 +02:00
23 lines
258 B
PHP
23 lines
258 B
PHP
<?php
|
|
|
|
/**
|
|
* Smarty method DisableCaching
|
|
*
|
|
* Disable caching
|
|
*
|
|
* @package Smarty
|
|
* @subpackage SmartyMethod
|
|
* @author Uwe Tews
|
|
*/
|
|
|
|
/**
|
|
* Disable caching
|
|
*/
|
|
function Smarty_Method_DisableCaching()
|
|
{
|
|
$this->smarty->caching = false;
|
|
return;
|
|
}
|
|
|
|
?>
|