diff --git a/typo3/sysext/frontend/Classes/ContentObject/Menu/AbstractMenuContentObject.php b/typo3/sysext/frontend/Classes/ContentObject/Menu/AbstractMenuContentObject.php
index f8ab2bcda83eba45520bd2a337a46b240a3eaf31..064cd7a22e57a0b136763a839eb9936352c08375 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;