From: Alexander Ebert Date: Sun, 29 Dec 2013 11:22:18 +0000 (+0100) Subject: Removed $this->literalStack (not used anymore) X-Git-Tag: 2.0.1~13^2~6 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=f07097c02792a68090067c2b292e1fe101032120;p=GitHub%2FWoltLab%2FWCF.git Removed $this->literalStack (not used anymore) Fixes #1633 --- 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']; }