From c655d6eb7e855ebde1788ee6da6ce05aa75d3f0f Mon Sep 17 00:00:00 2001 From: se4598 Date: Wed, 29 Jan 2014 13:21:45 +0100 Subject: [PATCH] Special:PrefixIndex omits stripprefix=1 for "Next page" link Bug: 60543 Change-Id: I05c26db132d0f7edadb82a798fdba37277a3eddb --- RELEASE-NOTES-1.23 | 1 + includes/specials/SpecialPrefixindex.php | 1 + 2 files changed, 2 insertions(+) diff --git a/RELEASE-NOTES-1.23 b/RELEASE-NOTES-1.23 index 10caf6fc65..f3d1a3506f 100644 --- a/RELEASE-NOTES-1.23 +++ b/RELEASE-NOTES-1.23 @@ -114,6 +114,7 @@ production. compiled without support for MySQL yet with support for another DBMS. * (bug 56199) Raw option of parser functions must now match complete word, to take effect. +* (bug 60543) Special:PrefixIndex forgot stripprefix=1 for "Next page" link === Web API changes in 1.23 === * (bug 54884) action=parse&prop=categories now indicates hidden and missing diff --git a/includes/specials/SpecialPrefixindex.php b/includes/specials/SpecialPrefixindex.php index c6307f03ba..4548b634cd 100644 --- a/includes/specials/SpecialPrefixindex.php +++ b/includes/specials/SpecialPrefixindex.php @@ -264,6 +264,7 @@ class SpecialPrefixindex extends SpecialAllpages { 'from' => $s->page_title, 'prefix' => $prefix, 'hideredirects' => $this->hideRedirects, + 'stripprefix' => $this->stripPrefix, ); if ( $namespace || $prefix == '' ) { -- 2.20.1