Files
ventas_php/libs/sysplugins/smarty_method_disabledebugging.php

22 lines
268 B
PHP
Executable File

<?php
/**
* Smarty method DisableDebugging
*
* Disable debugging
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Disable debugging
*/
function Smarty_Method_DisableDebugging($smarty)
{
$smarty->debugging = false;
return;
}
?>