Merge "Don't show language alert on main page if it has no languages"

This commit is contained in:
jenkins-bot 2022-01-31 18:15:49 +00:00 committed by Gerrit Code Review
commit fa3c528bef
1 changed files with 1 additions and 1 deletions

View File

@ -558,7 +558,7 @@ class SkinVector extends SkinMustache {
private function shouldLanguageAlertBeInSidebar(): bool {
$featureManager = VectorServices::getFeatureManager();
$isMainPage = $this->getTitle() ? $this->getTitle()->isMainPage() : false;
$shouldShowOnMainPage = $isMainPage &&
$shouldShowOnMainPage = $isMainPage && !empty( $this->getLanguagesCached() ) &&
$featureManager->isFeatureEnabled( Constants::FEATURE_LANGUAGE_IN_MAIN_PAGE_HEADER );
return ( $this->isLanguagesInContentAt( 'top' ) && !$isMainPage &&
$featureManager->isFeatureEnabled( Constants::FEATURE_LANGUAGE_ALERT_IN_SIDEBAR ) ) ||