Files
smarty/libs/sysplugins/smarty_method_disablecompilecheck.php
Uwe.Tews 94b80e892b - renamed function names of autoloaded Smarty methods to Smarty_Method_....
- new security_class property (default is Smarty_Security)
2009-11-03 20:38:38 +00:00

25 lines
321 B
PHP

<?php
/**
* Smarty method DisableCompileCheck
*
* Disable compile checking
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Disable compile checking
*
* @param object $smarty
*/
function Smarty_Method_DisableCompileCheck($smarty)
{
$smarty->compile_check = false;
return;
}
?>