Files
smarty/libs/sysplugins/method.disabledebugging.php

26 lines
368 B
PHP
Raw Normal View History

<?php
/**
* Smarty method disableDebugging
*
* Disable debugging
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Smarty class disableDebugging
*
* Disable debugging
*/
class Smarty_Method_DisableDebugging extends Smarty_Internal_Base {
public function execute()
{
return $this->smarty->debugging = false;
}
}
?>