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

24 lines
261 B
PHP

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