SuiteCRM-Core/public/legacy/include/Smarty/plugins/block.nocache.php
2021-03-31 15:37:32 +01:00

7 lines
No EOL
231 B
PHP
Executable file

<?php
//implements Smarty 3 style {nocache}{/nocache} block to prevent caching of a section of a template.
//remove this upon upgrade to Smarty 3
function smarty_block_nocache($param, $content, &$smarty) {
return $content;
}
?>