From: Volker E Date: Sun, 22 Apr 2018 02:13:22 +0000 (-0700) Subject: Special:PrefixIndex: Fix form legend X-Git-Tag: 1.34.0-rc.0~5619^2 X-Git-Url: http://git.cyclocoop.org/%22%40url%40/Fool?a=commitdiff_plain;h=6d6c69cc8e13ac2d84996f148a417290c41b6df9;p=lhc%2Fweb%2Fwiklou.git Special:PrefixIndex: Fix form legend `allpages` is insufficient description, making use of `prefixindex` equivalent to page title. Change-Id: I75117d3d881df05d9f85835caf0fdf3cd7adcf01 --- diff --git a/includes/specials/SpecialPrefixindex.php b/includes/specials/SpecialPrefixindex.php index 9ff6d70811..fac71b2d78 100644 --- a/includes/specials/SpecialPrefixindex.php +++ b/includes/specials/SpecialPrefixindex.php @@ -127,7 +127,7 @@ class SpecialPrefixindex extends SpecialAllPages { $htmlForm = new HTMLForm( $formDescriptor, $this->getContext() ); $htmlForm ->setMethod( 'get' ) - ->setWrapperLegendMsg( 'allpages' ) + ->setWrapperLegendMsg( 'prefixindex' ) ->setSubmitTextMsg( 'prefixindex-submit' ); return $htmlForm->prepareForm()->getHTML( false );