From 342f52f6c4f058a23161271cd31cacd41c7dc2d3 Mon Sep 17 00:00:00 2001 From: umherirrender Date: Sun, 6 Dec 2015 20:46:43 +0100 Subject: [PATCH] Comment out getSubpagesForPrefixSearch of Special:Tags The subpages does not have an own form, which makes listing worse. Comment out to make clear there are not listed for a reason. As per comment on I4bd99376bbddbbce1812119a43484f08e2360ff5 Change-Id: I076730dbaa99536cf2c85e3fb2602dc0e6289372 --- includes/specials/SpecialTags.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/includes/specials/SpecialTags.php b/includes/specials/SpecialTags.php index 97f2380719..107fc689f7 100644 --- a/includes/specials/SpecialTags.php +++ b/includes/specials/SpecialTags.php @@ -457,11 +457,12 @@ class SpecialTags extends SpecialPage { * @return string[] subpages */ public function getSubpagesForPrefixSearch() { + // The subpages does not have an own form, so not listing it at the moment return array( - 'delete', - 'activate', - 'deactivate', - 'create', + // 'delete', + // 'activate', + // 'deactivate', + // 'create', ); } -- 2.20.1