Files
ventas_php/libs/sysplugins/smarty_method_enableforcecompile.php

23 lines
288 B
PHP
Executable File

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