Index: trunk/phase3/maintenance/language/messages.inc |
— | — | @@ -1337,6 +1337,8 @@ |
1338 | 1338 | 'unblocked', |
1339 | 1339 | 'unblocked-id', |
1340 | 1340 | 'ipblocklist', |
| 1341 | + 'ipblocklist-legend', |
| 1342 | + 'ipblocklist-username', |
1341 | 1343 | 'ipblocklist-summary', |
1342 | 1344 | 'ipblocklist-submit', |
1343 | 1345 | 'blocklistline', |
Index: trunk/phase3/includes/SpecialIpblocklist.php |
— | — | @@ -245,8 +245,11 @@ |
246 | 246 | return |
247 | 247 | Xml::tags( 'form', array( 'action' => $wgScript ), |
248 | 248 | Xml::hidden( 'title', $wgTitle->getPrefixedDbKey() ) . |
249 | | - Xml::input( 'ip', /*size*/ false, $this->ip ) . |
250 | | - Xml::submitButton( wfMsg( 'ipblocklist-submit' ) ) |
| 249 | + Xml::openElement( 'fieldset' ) . |
| 250 | + Xml::element( 'legend', null, wfMsg( 'ipblocklist-legend' ) ) . |
| 251 | + Xml::inputLabel( wfMsg( 'ipblocklist-username' ), 'ip', 'ip', /* size */ false, $this->ip ) . |
| 252 | + Xml::submitButton( wfMsg( 'ipblocklist-submit' ) ) . |
| 253 | + Xml::closeElement( 'fieldset' ) |
251 | 254 | ); |
252 | 255 | } |
253 | 256 | |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -2018,6 +2018,8 @@ |
2019 | 2019 | 'unblocked' => '[[User:$1|$1]] has been unblocked', |
2020 | 2020 | 'unblocked-id' => 'Block $1 has been removed', |
2021 | 2021 | 'ipblocklist' => 'List of blocked IP addresses and usernames', |
| 2022 | +'ipblocklist-legend' => 'Find a blocked user', |
| 2023 | +'ipblocklist-username' => 'Username or IP address:', |
2022 | 2024 | 'ipblocklist-summary' => '', # only translate this message to other languages if you have to change it |
2023 | 2025 | 'ipblocklist-submit' => 'Search', |
2024 | 2026 | 'blocklistline' => '$1, $2 blocked $3 ($4)', |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -166,6 +166,9 @@ |
167 | 167 | Special:Protectedpages (implicit protection, doesn't make sense to have it) |
168 | 168 | * (bug 10793) "Mark patrolled" links will now be shown for users with |
169 | 169 | patrol permissions on all eligible diff pages |
| 170 | +* (bug 10655) Show standard tool links for blocked users in block log messages |
| 171 | +* Show standard tool links for blocked users in Special:Ipblocklist |
| 172 | +* Miscellaneous aesthetic improvements to Special:Ipblocklist |
170 | 173 | |
171 | 174 | == Bugfixes since 1.10 == |
172 | 175 | |
— | — | @@ -359,8 +362,6 @@ |
360 | 363 | * (bug 10765) img_auth.php will now refuse logged-out requests where |
361 | 364 | $wgWhitelistRead is undefined, instead of (incorrectly) honouring them |
362 | 365 | * Fixed img_auth.php file name extraction for whitelist checking |
363 | | -* (bug 10655) Show standard tool links for blocked users in block log messages |
364 | | -* Show standard tool links for blocked users in Special:Ipblocklist |
365 | 366 | |
366 | 367 | == API changes since 1.10 == |
367 | 368 | |