Files
smarty/libs/sysplugins/smarty_method_disabledebugging.php

22 lines
253 B
PHP
Raw Normal View History

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