Comment out getSubpagesForPrefixSearch of Special:Tags
authorumherirrender <umherirrender_de.wp@web.de>
Sun, 6 Dec 2015 19:46:43 +0000 (20:46 +0100)
committerumherirrender <umherirrender_de.wp@web.de>
Sun, 6 Dec 2015 19:46:43 +0000 (20:46 +0100)
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

index 97f2380..107fc68 100644 (file)
@@ -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',
                );
        }