game/onyx2/modules/templates/smarty/sysplugins/smarty_method_disablecompilecheck.php

25 lines
306 B
PHP
Raw Normal View History

2020-11-15 15:12:32 +00:00
<?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;
}
?>