Index: trunk/phase3/includes/ProtectionForm.php |
— | — | @@ -447,7 +447,7 @@ |
448 | 448 | $out .= Xml::closeElement( 'fieldset' ); |
449 | 449 | |
450 | 450 | if ( $wgUser->isAllowed( 'editinterface' ) ) { |
451 | | - $title = Title::newFromText( 'protect-dropdown', NS_MEDIAWIKI ); |
| 451 | + $title = Title::newFromText( 'Protect-dropdown', NS_MEDIAWIKI ); |
452 | 452 | $link = $wgUser->getSkin()->link( |
453 | 453 | $title, |
454 | 454 | wfMsgHtml( 'protect-edit-reasonlist' ), |
Index: trunk/phase3/includes/FileDeleteForm.php |
— | — | @@ -194,7 +194,7 @@ |
195 | 195 | |
196 | 196 | if ( $wgUser->isAllowed( 'editinterface' ) ) { |
197 | 197 | $skin = $wgUser->getSkin(); |
198 | | - $title = Title::newFromText( 'filedelete-reason-dropdown', NS_MEDIAWIKI ); |
| 198 | + $title = Title::newFromText( 'Filedelete-reason-dropdown', NS_MEDIAWIKI ); |
199 | 199 | $link = $skin->link( |
200 | 200 | $title, |
201 | 201 | wfMsgHtml( 'filedelete-edit-reasonlist' ), |
Index: trunk/phase3/includes/specials/SpecialBlockip.php |
— | — | @@ -636,7 +636,13 @@ |
637 | 637 | $links[] = $this->getContribsLink( $skin ); |
638 | 638 | $links[] = $this->getUnblockLink( $skin ); |
639 | 639 | $links[] = $this->getBlockListLink( $skin ); |
640 | | - $links[] = $skin->makeLink ( 'MediaWiki:Ipbreason-dropdown', wfMsgHtml( 'ipb-edit-dropdown' ) ); |
| 640 | + $title = Title::newFromText( 'Ipbreason-dropdown', NS_MEDIAWIKI ); |
| 641 | + $links[] = $skin->link( |
| 642 | + $title, |
| 643 | + wfMsgHtml( 'ipb-edit-dropdown' ), |
| 644 | + array(), |
| 645 | + array( 'action' => 'edit' ) |
| 646 | + ); |
641 | 647 | return '<p class="mw-ipb-conveniencelinks">' . $wgLang->pipeList( $links ) . '</p>'; |
642 | 648 | } |
643 | 649 | |