Primer commit del sistema avantika sin cambios
This commit is contained in:
22
libs/sysplugins/smarty_method_disablecaching.php
Executable file
22
libs/sysplugins/smarty_method_disablecaching.php
Executable file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Smarty method DisableCaching
|
||||
*
|
||||
* Disable caching
|
||||
*
|
||||
* @package Smarty
|
||||
* @subpackage SmartyMethod
|
||||
* @author Uwe Tews
|
||||
*/
|
||||
|
||||
/**
|
||||
* Disable caching
|
||||
*/
|
||||
function Smarty_Method_DisableCaching()
|
||||
{
|
||||
$this->smarty->caching = false;
|
||||
return;
|
||||
}
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user