From: Chad Horohoe Date: Mon, 30 Mar 2009 01:56:07 +0000 (+0000) Subject: (bug 17947) On Special:SpecialPages, restricted special pages are now marked with... X-Git-Tag: 1.31.0-rc.0~42274 X-Git-Url: http://git.cyclocoop.org/data/Fool?a=commitdiff_plain;h=185ba165ba28c1d204cd3a1887d91e270cf56a7e;p=lhc%2Fweb%2Fwiklou.git (bug 17947) On Special:SpecialPages, restricted special pages are now marked with tags, helps with text-based browsers --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index f8a9bea0ae..04c8c99275 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -309,6 +309,8 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN * (bug 17617) HTML cleanup for ImagePage * (bug 17964) namespaceDupes.php no longer fails on an empty interwiki table * Improved error handling for image moving +* (bug 17947) On Special:SpecialPages, restricted special pages are now marked + with tags, helps with text-based browsers == API changes in 1.15 == * (bug 16858) Revamped list=deletedrevs to make listing deleted contributions diff --git a/includes/specials/SpecialSpecialpages.php b/includes/specials/SpecialSpecialpages.php index 4959f107eb..89fd9b3218 100644 --- a/includes/specials/SpecialSpecialpages.php +++ b/includes/specials/SpecialSpecialpages.php @@ -63,7 +63,7 @@ function wfSpecialSpecialpages() { $link = $sk->makeKnownLinkObj( $title , htmlspecialchars( $desc ) ); if( $restricted ) { $includesRestrictedPages = true; - $wgOut->addHTML( "
  • {$link}
  • \n" ); + $wgOut->addHTML( "
  • {$link}
  • \n" ); } else { $wgOut->addHTML( "
  • {$link}
  • \n" ); } diff --git a/languages/messages/MessagesEn.php b/languages/messages/MessagesEn.php index 3d9c0c78f3..0014f790ad 100644 --- a/languages/messages/MessagesEn.php +++ b/languages/messages/MessagesEn.php @@ -3841,7 +3841,7 @@ Enter the filename without the "{{ns:file}}:" prefix.', 'specialpages-summary' => '', # do not translate or duplicate this message to other languages 'specialpages-note' => '---- * Normal special pages. -* Restricted special pages.', +* Restricted special pages.', 'specialpages-group-maintenance' => 'Maintenance reports', 'specialpages-group-other' => 'Other special pages', 'specialpages-group-login' => 'Login / sign up',