From f0297029be26863f291c609a10e78328dbad6374 Mon Sep 17 00:00:00 2001 From: Matthias Schmidt Date: Sun, 29 Dec 2013 12:28:27 +0100 Subject: [PATCH] Removes obsolete property references in TemplateScriptingCompiler 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 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']; } -- 2.20.1