Files
smarty/libs/sysplugins/smarty_method_disableforcecompile.php

23 lines
278 B
PHP
Raw Normal View History

<?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;
}
?>