Merge "Revert "Fix missing wikibase link in Minerva sidebar""

This commit is contained in:
jenkins-bot 2024-09-05 15:19:57 +00:00 committed by Gerrit Code Review
commit 8c35813ba3

View file

@ -170,14 +170,6 @@ class SkinMinerva extends SkinMustache {
$sidebar = $this->buildSidebar();
$actions = $nav['actions'] ?? [];
$views = $nav['views'] ?? [];
// See T66315: Wikibase link is being moved to the otherprojects sidebar.
// Since the other projects are not displayed in Minerva, we must manually add it back to the toolbox.
$wikibaseLink = array_filter( $sidebar[ 'wikibase-otherprojects' ] ?? [], static function ( $sitelink ) {
return $sitelink[ 'id' ] === 't-wikibase';
} );
if ( $wikibaseLink ) {
$sidebar['TOOLBOX']['wikibase'] = $wikibaseLink[0];
}
return $pageActionsDirector->buildMenu( $sidebar['TOOLBOX'], $actions, $views );
}