From f07097c02792a68090067c2b292e1fe101032120 Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Sun, 29 Dec 2013 12:22:18 +0100 Subject: [PATCH] Removed $this->literalStack (not used anymore) Fixes #1633 --- .../lib/system/template/TemplateScriptingCompiler.class.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/wcfsetup/install/files/lib/system/template/TemplateScriptingCompiler.class.php b/wcfsetup/install/files/lib/system/template/TemplateScriptingCompiler.class.php index 545a790056..bf327436dc 100644 --- a/wcfsetup/install/files/lib/system/template/TemplateScriptingCompiler.class.php +++ b/wcfsetup/install/files/lib/system/template/TemplateScriptingCompiler.class.php @@ -204,7 +204,6 @@ class TemplateScriptingCompiler { 'autoloadPlugins' => $this->autoloadPlugins, 'currentIdentifier' => $this->currentIdentifier, 'currentLineNo' => $this->currentLineNo, - 'literalStack' => $this->literalStack, 'stringStack' => $this->stringStack, 'tagStack' => $this->tagStack ); @@ -214,7 +213,7 @@ class TemplateScriptingCompiler { } // reset vars - $this->autoloadPlugins = $this->tagStack = $this->stringStack = $this->literalStack = array(); + $this->autoloadPlugins = $this->tagStack = $this->stringStack = array(); $this->currentIdentifier = $identifier; $this->currentLineNo = 1; @@ -286,7 +285,6 @@ class TemplateScriptingCompiler { $this->autoloadPlugins = $previousData['autoloadPlugins']; $this->currentIdentifier = $previousData['currentIdentifier']; $this->currentLineNo = $previousData['currentLineNo']; - $this->literalStack = $previousData['literalStack']; $this->stringStack = $previousData['stringStack']; $this->tagStack = $previousData['tagStack']; } -- 2.20.1