Files
smarty/libs/sysplugins/smarty_method_disablecompilecheck.php
Uwe.Tews cf379474fd - change of filenames in sysplugins folder for internal spl_autoload function
- lexer/parser changed for increased compilation speed
2009-10-31 00:44:58 +00:00

25 lines
306 B
PHP

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