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

23 lines
255 B
PHP

<?php
/**
* Smarty method enableDebugging
*
* Enable debugging
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Enable debugging
*/
function enableDebugging($smarty)
{
$this->smarty->debugging = true;
return;
}
?>