Primer commit del sistema avantika sin cambios
This commit is contained in:
24
libs/sysplugins/smarty_method_disablecompilecheck.php
Executable file
24
libs/sysplugins/smarty_method_disablecompilecheck.php
Executable file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Smarty method DisableCompileCheck
|
||||
*
|
||||
* Disable compile checking
|
||||
*
|
||||
* @package Smarty
|
||||
* @subpackage SmartyMethod
|
||||
* @author Uwe Tews
|
||||
*/
|
||||
|
||||
/**
|
||||
* Disable compile checking
|
||||
*
|
||||
* @param object $smarty
|
||||
*/
|
||||
function Smarty_Method_DisableCompileCheck($smarty)
|
||||
{
|
||||
$smarty->compile_check = false;
|
||||
return;
|
||||
}
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user