Files
smarty/libs/sysplugins/method.enableforcecompile.php

23 lines
273 B
PHP

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