From: umherirrender Date: Sun, 6 Dec 2015 19:46:43 +0000 (+0100) Subject: Comment out getSubpagesForPrefixSearch of Special:Tags X-Git-Tag: 1.31.0-rc.0~8702^2 X-Git-Url: http://git.heureux-cyclage.org/?a=commitdiff_plain;h=342f52f6c4f058a23161271cd31cacd41c7dc2d3;p=lhc%2Fweb%2Fwiklou.git 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 --- 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', ); }