From 57323debd0df5b45ccbd08921565c2544d10660e Mon Sep 17 00:00:00 2001 From: Markus Klein Date: Tue, 25 Aug 2015 12:55:26 +0200 Subject: [PATCH] [BUGFIX] Correctly assign workspace for rootline retrieval Resolves: #69306 Releases: master, 6.2 Change-Id: If59ec36222c1124c2918b39fc014e4c8a2d7bf2f Reviewed-on: http://review.typo3.org/42865 Reviewed-by: Markus Klein Tested-by: Markus Klein --- .../Classes/Controller/TypoScriptFrontendController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php b/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php index 952de13fba50..ab36b57ea9a2 100644 --- a/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php +++ b/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php @@ -1575,7 +1575,7 @@ class TypoScriptFrontendController { $ws = $this->whichWorkspace(); if ($this->sys_page->error_getRootLine_failPid == -1 && $ws) { $this->sys_page->versioningPreview = TRUE; - $this->versioningWorkspaceId = $ws; + $this->sys_page->versioningWorkspaceId = $ws; $this->rootLine = $this->sys_page->getRootLine($this->id, $this->MP); } if (empty($this->rootLine)) { -- 2.20.1