Index: trunk/phase3/includes/specials/SpecialSpecialpages.php |
— | — | @@ -63,7 +63,7 @@ |
64 | 64 | $link = $sk->makeKnownLinkObj( $title , htmlspecialchars( $desc ) ); |
65 | 65 | if( $restricted ) { |
66 | 66 | $includesRestrictedPages = true; |
67 | | - $wgOut->addHTML( "<li class='mw-specialpages-page mw-specialpagerestricted'>{$link}</li>\n" ); |
| 67 | + $wgOut->addHTML( "<li class='mw-specialpages-page mw-specialpagerestricted'><strong>{$link}</strong></li>\n" ); |
68 | 68 | } else { |
69 | 69 | $wgOut->addHTML( "<li>{$link}</li>\n" ); |
70 | 70 | } |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -3841,7 +3841,7 @@ |
3842 | 3842 | 'specialpages-summary' => '', # do not translate or duplicate this message to other languages |
3843 | 3843 | 'specialpages-note' => '---- |
3844 | 3844 | * Normal special pages. |
3845 | | -* <span class="mw-specialpagerestricted">Restricted special pages.</span>', |
| 3845 | +* <strong class="mw-specialpagerestricted">Restricted special pages.</strong>', |
3846 | 3846 | 'specialpages-group-maintenance' => 'Maintenance reports', |
3847 | 3847 | 'specialpages-group-other' => 'Other special pages', |
3848 | 3848 | 'specialpages-group-login' => 'Login / sign up', |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -309,6 +309,8 @@ |
310 | 310 | * (bug 17617) HTML cleanup for ImagePage |
311 | 311 | * (bug 17964) namespaceDupes.php no longer fails on an empty interwiki table |
312 | 312 | * Improved error handling for image moving |
| 313 | +* (bug 17947) On Special:SpecialPages, restricted special pages are now marked |
| 314 | + with <strong> tags, helps with text-based browsers |
313 | 315 | |
314 | 316 | == API changes in 1.15 == |
315 | 317 | * (bug 16858) Revamped list=deletedrevs to make listing deleted contributions |