Files
smarty/libs/sysplugins/method.disabledebuggingurlctrl.php
Uwe.Tews 25e4ef7fb9 - bugfix smarty.class and internal.security_handler
- added compile_check configuration 
- added all setter/getter methodes
2009-03-31 14:20:10 +00:00

26 lines
493 B
PHP

<?php
/**
* Smarty method disableDebuggingUrlCtrl
*
* Disable possibility to Disable debugging by SMARTY_DEBUG attribute
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Smarty class disableDebuggingUrlCtrl
*
* Disable possibility to Disable debugging by SMARTY_DEBUG attribute
*/
class Smarty_Method_disableDebuggingUrlCtrl extends Smarty_Internal_Base {
public function execute()
{
return $this->smarty->debugging_ctrl = 'none';
}
}
?>