diff options
Diffstat (limited to 'includes/specials/SpecialLonelypages.php')
-rw-r--r-- | includes/specials/SpecialLonelypages.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/includes/specials/SpecialLonelypages.php b/includes/specials/SpecialLonelypages.php index 763bbdb1..8c6a88ac 100644 --- a/includes/specials/SpecialLonelypages.php +++ b/includes/specials/SpecialLonelypages.php @@ -44,7 +44,10 @@ class LonelyPagesPage extends PageQueryPage { function isExpensive() { return true; } - function isSyndicated() { return false; } + + function isSyndicated() { + return false; + } function getQueryInfo() { return array ( @@ -78,4 +81,8 @@ class LonelyPagesPage extends PageQueryPage { return array( 'page_title' ); } } + + protected function getGroupName() { + return 'maintenance'; + } } |