mirror of
https://github.com/smarty-php/smarty.git
synced 2025-11-02 05:11:36 +01:00
- removed all internal calls of Smarty::instance()
- fixed code in double quoted strings
This commit is contained in:
@@ -11,15 +11,11 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* Smarty class isDebugging
|
||||
*
|
||||
* is debugging
|
||||
*/
|
||||
class Smarty_Method_isDebugging extends Smarty_Internal_Base {
|
||||
public function execute()
|
||||
{
|
||||
return $this->smarty->debugging;
|
||||
}
|
||||
function isDebugging($smarty)
|
||||
{
|
||||
return $smarty->debugging;
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user