2009-03-31 14:20:10 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2009-11-03 20:38:38 +00:00
|
|
|
* Smarty method DisableDebuggingUrlCtrl
|
2009-03-31 14:20:10 +00:00
|
|
|
*
|
|
|
|
* Disable possibility to Disable debugging by SMARTY_DEBUG attribute
|
|
|
|
*
|
|
|
|
* @package Smarty
|
|
|
|
* @subpackage SmartyMethod
|
|
|
|
* @author Uwe Tews
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Disable possibility to Disable debugging by SMARTY_DEBUG attribute
|
|
|
|
*/
|
2009-11-03 20:38:38 +00:00
|
|
|
function Smarty_Method_DisableDebuggingUrlCtrl($smarty)
|
2009-03-31 14:20:10 +00:00
|
|
|
{
|
2009-08-08 17:28:23 +00:00
|
|
|
$smarty->debugging_ctrl = 'none';
|
2009-04-06 02:53:09 +00:00
|
|
|
return;
|
2009-03-31 14:20:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|