Files
ventas_php/libs/sysplugins/smarty_method_enabledebugging.php

23 lines
270 B
PHP
Executable File

<?php
/**
* Smarty method EnableDebugging
*
* Enable debugging
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Enable debugging
*/
function Smarty_Method_EnableDebugging($smarty)
{
$this->smarty->debugging = true;
return;
}
?>