game/onyx2/modules/templates/smarty/sysplugins/smarty_method_disabledebugging.php

22 lines
253 B
PHP

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