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

22 lines
221 B
PHP

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