From c526154b16ebf397f7c4af6dfe0e8521928342fb Mon Sep 17 00:00:00 2001
From: Frederic Gaus <gaus@flagbit.de>
Date: Thu, 13 Nov 2014 13:42:54 +0100
Subject: [PATCH] [BUGFIX] Fix bug in HMENU special prev

This patch fixes a regression of patch #61721.
The array before this patch had numeric indexes and thus the first
one was not recognized in the prev menu.

Releases: master, 6.2
Resolves: #62482
Related: #61721
Change-Id: I2b05ffa3973fe7ca31b6e4ccd193d44718d1ec1a
Reviewed-on: http://review.typo3.org/34063
Reviewed-by: Markus Klein <klein.t3@reelworx.at>
Tested-by: Markus Klein <klein.t3@reelworx.at>
Reviewed-by: Mathias Schreiber <mathias.schreiber@wmdb.de>
Reviewed-by: Nicole Cordes <typo3@cordes.co>
Reviewed-by: Wouter Wolters <typo3@wouterwolters.nl>
---
 .../Classes/ContentObject/Menu/AbstractMenuContentObject.php    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/typo3/sysext/frontend/Classes/ContentObject/Menu/AbstractMenuContentObject.php b/typo3/sysext/frontend/Classes/ContentObject/Menu/AbstractMenuContentObject.php
index f8ab2bcda83e..064cd7a22e57 100644
--- a/typo3/sysext/frontend/Classes/ContentObject/Menu/AbstractMenuContentObject.php
+++ b/typo3/sysext/frontend/Classes/ContentObject/Menu/AbstractMenuContentObject.php
@@ -925,7 +925,7 @@ class AbstractMenuContentObject {
 		$filteredPages = array();
 		foreach ($pages as $aPage) {
 			if ($this->filterMenuPages($aPage, $banned, $aPage['doktype'] === PageRepository::DOKTYPE_SPACER)) {
-				$filteredPages[] = $aPage;
+				$filteredPages[$aPage['uid']] = $aPage;
 			}
 		}
 		return $filteredPages;
-- 
GitLab