From: se4598 Date: Wed, 29 Jan 2014 12:21:45 +0000 (+0100) Subject: Special:PrefixIndex omits stripprefix=1 for "Next page" link X-Git-Tag: 1.31.0-rc.0~17091^2 X-Git-Url: http://git.cyclocoop.org/%28?a=commitdiff_plain;h=c655d6eb7e855ebde1788ee6da6ce05aa75d3f0f;p=lhc%2Fweb%2Fwiklou.git Special:PrefixIndex omits stripprefix=1 for "Next page" link Bug: 60543 Change-Id: I05c26db132d0f7edadb82a798fdba37277a3eddb --- 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 == '' ) {