From cc7b4ad53f52d6a3bda0a2d64d790a381677bd5f Mon Sep 17 00:00:00 2001 From: Thomas Hohn <tho@systime.dk> Date: Tue, 13 Dec 2016 21:46:38 +0100 Subject: [PATCH] [BUGFIX] Only perform reindex if data has indeed changed Change-Id: I889264f34599be556e16b3d37825a3761b681e70 Resolves: #79068 Releases: master, 7.6 Reviewed-on: https://review.typo3.org/51018 Tested-by: TYPO3com <no-reply@typo3.com> Reviewed-by: Thomas Hohn <thomas@hohn.dk> Tested-by: Thomas Hohn <thomas@hohn.dk> Reviewed-by: Michael Oehlhof <typo3@oehlhof.de> Reviewed-by: Christian Kuhn <lolli@schwarzbu.ch> Tested-by: Christian Kuhn <lolli@schwarzbu.ch> --- .../DataHandling/PlainDataResolver.php | 24 +++++++++++-------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/typo3/sysext/core/Classes/DataHandling/PlainDataResolver.php b/typo3/sysext/core/Classes/DataHandling/PlainDataResolver.php index 375075ac95ac..cd2c0c1637c8 100644 --- a/typo3/sysext/core/Classes/DataHandling/PlainDataResolver.php +++ b/typo3/sysext/core/Classes/DataHandling/PlainDataResolver.php @@ -136,17 +136,21 @@ class PlainDataResolver return $this->resolvedIds; } - $ids = $this->reindex( - $this->processVersionOverlays($this->liveIds) - ); - $ids = $this->reindex( - $this->processSorting($ids) - ); - $ids = $this->reindex( - $this->applyLiveIds($ids) - ); + $this->resolvedIds = $this->processVersionOverlays($this->liveIds); + if ($this->resolvedIds !== $this->liveIds) { + $this->resolvedIds = $this->reindex($this->resolvedIds); + } + + $tempIds = $this->processSorting($this->resolvedIds); + if ($tempIds !== $this->resolvedIds) { + $this->resolvedIds = $this->reindex($tempIds); + } + + $tempIds = $this->applyLiveIds($this->resolvedIds); + if ($tempIds !== $this->resolvedIds) { + $this->resolvedIds = $this->reindex($tempIds); + } - $this->resolvedIds = $ids; return $this->resolvedIds; } -- GitLab