From: Matthias Schmidt Date: Sun, 29 Dec 2013 11:28:27 +0000 (+0100) Subject: Removes obsolete property references in TemplateScriptingCompiler X-Git-Tag: 2.0.1~13^2~5 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=f0297029be26863f291c609a10e78328dbad6374;p=GitHub%2FWoltLab%2FWCF.git Removes obsolete property references in TemplateScriptingCompiler 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 bf327436dc..5e3f2a4058 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, - 'stringStack' => $this->stringStack, 'tagStack' => $this->tagStack ); } @@ -213,7 +212,7 @@ class TemplateScriptingCompiler { } // reset vars - $this->autoloadPlugins = $this->tagStack = $this->stringStack = array(); + $this->autoloadPlugins = $this->tagStack = array(); $this->currentIdentifier = $identifier; $this->currentLineNo = 1; @@ -285,7 +284,6 @@ class TemplateScriptingCompiler { $this->autoloadPlugins = $previousData['autoloadPlugins']; $this->currentIdentifier = $previousData['currentIdentifier']; $this->currentLineNo = $previousData['currentLineNo']; - $this->stringStack = $previousData['stringStack']; $this->tagStack = $previousData['tagStack']; }