Files
smarty/libs/sysplugins/method.isdebuggingurlctrl.php
Uwe.Tews d2d8c8925b - removed all internal calls of Smarty::instance()
- fixed code in double quoted strings
2009-08-08 17:28:23 +00:00

22 lines
338 B
PHP

<?php
/**
* Smarty method isDebuggingUrlCtrl
*
* is possibility to is debugging by SMARTY_DEBUG attribute
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* is possibility to is debugging by SMARTY_DEBUG attribute
*/
function isDebuggingUrlCtrl($smarty)
{
return $smarty->debugging_ctrl != 'none';
}
?>