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

23 lines
255 B
PHP
Raw Normal View History

2020-11-15 15:12:32 +00:00
<?php
/**
* Smarty method enableDebugging
*
* Enable debugging
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Enable debugging
*/
function enableDebugging($smarty)
{
$this->smarty->debugging = true;
return;
}
?>