From 3918deeeca6c250ba3288491f78ee8e52c386ef4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Niklas=20Laxstr=C3=B6m?= Date: Sun, 28 Sep 2008 09:31:24 +0000 Subject: [PATCH] * (bug 15388) Title of Special:PrefixIndex --- RELEASE-NOTES | 1 + includes/specials/SpecialPrefixindex.php | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 89b45281f5..83d8585fbd 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -231,6 +231,7 @@ The following extensions are migrated into MediaWiki 1.14: * Http::request() now respects $wgHTTPtimeout when not using cURL * (bug 15158) Userinvalidcssjstitle not shown on preview * (bug 15196) Free external links should be numbered in a localised manner +* (bug 15388) Title of Special:PrefixIndex === API changes in 1.14 === diff --git a/includes/specials/SpecialPrefixindex.php b/includes/specials/SpecialPrefixindex.php index a360d509b2..581d4b0303 100644 --- a/includes/specials/SpecialPrefixindex.php +++ b/includes/specials/SpecialPrefixindex.php @@ -11,7 +11,7 @@ class SpecialPrefixindex extends SpecialAllpages { protected $nsfromMsg = 'allpagesprefix'; function __construct(){ - parent::__construct( 'Prefixindex' ); + parent::__construct( 'Prefixindex' ); } /** @@ -32,7 +32,7 @@ class SpecialPrefixindex extends SpecialAllpages { $wgOut->setPagetitle( ( $namespace > 0 && in_array( $namespace, array_keys( $namespaces ) ) ) ? wfMsg( 'allinnamespace', str_replace( '_', ' ', $namespaces[$namespace] ) ) - : wfMsg( 'allarticles' ) + : wfMsg( 'prefixindex' ) ); if( isset( $par ) ){ -- 2.20.1