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

23 lines
273 B
PHP
Raw Normal View History

2020-11-15 15:12:32 +00:00
<?php
/**
* Smarty method enableForceCompile
*
* Enable forced compiling
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Enable forced compiling
*/
function enableForceCompile($smarty)
{
$smarty->force_compile = true;
return;
}
?>