Index: trunk/phase3/includes/specials/SpecialAllmessages.php |
— | — | @@ -299,7 +299,8 @@ |
300 | 300 | |
301 | 301 | $title = Title::makeTitle( NS_MEDIAWIKI, $value . $this->suffix ); |
302 | 302 | $talk = Title::makeTitle( NS_MEDIAWIKI_TALK, $value . $this->suffix ); |
303 | | - |
| 303 | + $edit = $this->mSkin->link( $title, wfMsg( 'edit' ), array(), 'action=edit' ); |
| 304 | + |
304 | 305 | if( $this->mCurrentRow->am_customised ){ |
305 | 306 | $title = $this->mSkin->linkKnown( $title, $wgLang->lcfirst( $value ) ); |
306 | 307 | } else { |
— | — | @@ -322,7 +323,7 @@ |
323 | 324 | array( 'broken' ) |
324 | 325 | ); |
325 | 326 | } |
326 | | - return $title . ' (' . $talk . ')'; |
| 327 | + return $title . ' (' . $wgLang->pipeList( array( $edit, $talk ) ) . ')'; |
327 | 328 | |
328 | 329 | case 'am_default' : |
329 | 330 | return Sanitizer::escapeHtmlAllowEntities( $value, ENT_QUOTES ); |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -543,6 +543,7 @@ |
544 | 544 | now links to the file rather than the file description page |
545 | 545 | * Password fields built with HTMLForm now still have the type="password" attribute |
546 | 546 | if $wgHtml5=false. |
| 547 | +* (bug 20860) Entries on Special:Allmessages now have direct "edit" link |
547 | 548 | |
548 | 549 | == API changes in 1.16 == |
549 | 550 | |