Files
smarty/libs/sysplugins/method.disablecompilecheck.php
Uwe.Tews d2d8c8925b - removed all internal calls of Smarty::instance()
- fixed code in double quoted strings
2009-08-08 17:28:23 +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;
}
?>