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

23 lines
278 B
PHP

<?php
/**
* Smarty method disableForceCompile
*
* Disable forced compiling
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Disable forced compiling
*/
function disableForceCompile($smarty)
{
$smarty->force_compile = false;
return;
}
?>