Files
smarty/libs/sysplugins/smarty_method_disableforcecompile.php

23 lines
293 B
PHP
Raw Normal View History

<?php
/**
* Smarty method DisableForceCompile
*
* Disable forced compiling
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Disable forced compiling
*/
function Smarty_Method_DisableForceCompile($smarty)
{
$smarty->force_compile = false;
return;
}
?>