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

23 lines
273 B
PHP

<?php
/**
* Smarty method enableCompileCheck
*
* Enable compile checking
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Enable compile checking
*/
function enableCompileCheck($smarty)
{
$smarty->compile_check = true;
return;
}
?>