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

23 lines
365 B
PHP
Raw Normal View History

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