Files
ventas_php/libs/sysplugins/smarty_method_enablecompilecheck.php

23 lines
288 B
PHP
Executable File

<?php
/**
* Smarty method EnableCompileCheck
*
* Enable compile checking
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Enable compile checking
*/
function Smarty_Method_EnableCompileCheck($smarty)
{
$smarty->compile_check = true;
return;
}
?>