Files
smarty/libs/sysplugins/smarty_method_disableforcecompile.php
T

23 lines
278 B
PHP
Raw Normal View History

2009-03-30 17:05:37 +00:00
<?php
/**
* Smarty method disableForceCompile
*
* Disable forced compiling
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Disable forced compiling
*/
function disableForceCompile($smarty)
{
$smarty->force_compile = false;
return;
2009-03-30 17:05:37 +00:00
}
?>