From 86a5b5d545f52c6b68bcfd16213162d680f90b57 Mon Sep 17 00:00:00 2001 From: Oliver Hader <oliver@typo3.org> Date: Tue, 29 Dec 2015 16:58:50 +0100 Subject: [PATCH] [BUGFIX] Computed properties are queried in workspace context This is a follow-up to issue #68643 to sanitize all places that reuse the fields (including the computed properties) of a record. Resolves: #66135 Releases: master, 7.6, 6.2 Change-Id: Ifb57193ff07e3d9ddae50568a0dce741f9aaf12d Reviewed-on: https://review.typo3.org/45493 Reviewed-by: Morton Jonuschat <m.jonuschat@mojocode.de> Tested-by: Morton Jonuschat <m.jonuschat@mojocode.de> Reviewed-by: Oliver Hader <oliver.hader@typo3.org> Tested-by: Oliver Hader <oliver.hader@typo3.org> --- typo3/sysext/frontend/Classes/Page/PageRepository.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/typo3/sysext/frontend/Classes/Page/PageRepository.php b/typo3/sysext/frontend/Classes/Page/PageRepository.php index 2504b5791d02..2d154e79d5c7 100644 --- a/typo3/sysext/frontend/Classes/Page/PageRepository.php +++ b/typo3/sysext/frontend/Classes/Page/PageRepository.php @@ -378,7 +378,7 @@ class PageRepository $origPage = reset($pagesInput); if (is_array($origPage)) { // Make sure that only fields which exist in the first incoming record are overlaid! - $fieldArr = array_intersect($fieldArr, array_keys($origPage)); + $fieldArr = array_intersect($fieldArr, array_keys($this->purgeComputedProperties($origPage))); } foreach ($pagesInput as $origPage) { if (is_array($origPage)) { @@ -1406,7 +1406,7 @@ class PageRepository } // Find pointed-to record. if ($moveID) { - $res = $this->getDatabaseConnection()->exec_SELECTquery(implode(',', array_keys($row)), $table, 'uid=' . (int)$moveID . $this->enableFields($table)); + $res = $this->getDatabaseConnection()->exec_SELECTquery(implode(',', array_keys($this->purgeComputedProperties($row))), $table, 'uid=' . (int)$moveID . $this->enableFields($table)); $origRow = $this->getDatabaseConnection()->sql_fetch_assoc($res); $this->getDatabaseConnection()->sql_free_result($res); if ($origRow) { -- GitLab