Merge "Enable table of contents on all namespaces"

This commit is contained in:
jenkins-bot 2022-03-29 21:34:18 +00:00 committed by Gerrit Code Review
commit 530658f160
1 changed files with 1 additions and 2 deletions

View File

@ -29,9 +29,8 @@ class SkinVector22 extends SkinVector {
private function isTableOfContentsVisibleInSidebar(): bool {
$featureManager = VectorServices::getFeatureManager();
$title = $this->getTitle();
$isMainNS = $title ? $title->inNamespaces( 0 ) : false;
$isMainPage = $title ? $title->isMainPage() : false;
return $featureManager->isFeatureEnabled( Constants::FEATURE_TABLE_OF_CONTENTS ) && $isMainNS && !$isMainPage;
return $featureManager->isFeatureEnabled( Constants::FEATURE_TABLE_OF_CONTENTS ) && !$isMainPage;
}
/**