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

23 lines
388 B
PHP
Raw Normal View History

2020-11-15 15:12:32 +00:00
<?php
/**
* Smarty method disableDebuggingUrlCtrl
*
* Disable possibility to Disable debugging by SMARTY_DEBUG attribute
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Disable possibility to Disable debugging by SMARTY_DEBUG attribute
*/
function disableDebuggingUrlCtrl($smarty)
{
$smarty->debugging_ctrl = 'none';
return;
}
?>