Index: trunk/phase3/includes/Linker.php |
— | — | @@ -1630,13 +1630,11 @@ |
1631 | 1631 | $protected = ''; |
1632 | 1632 | } |
1633 | 1633 | if( $titleObj->quickUserCan( 'edit' ) ) { |
1634 | | - $editLink = $this->link( $titleObj, wfMsgHtml( 'editlink' ), array(), array( 'action' => 'edit' ), 'known' ); |
| 1634 | + $editLink = $this->makeLinkObj( $titleObj, wfMsg('editlink'), 'action=edit' ); |
1635 | 1635 | } else { |
1636 | | - $editLink = $this->link( $titleObj, wfMsgHtml( 'viewsourcelink' ), array(), array( 'action' => 'edit' ), 'known' ); |
| 1636 | + $editLink = $this->makeLinkObj( $titleObj, wfMsg('viewsourcelink'), 'action=edit' ); |
1637 | 1637 | } |
1638 | | - $talkLink = $this->link( $titleObj->getTalkPage(), wfMsgHtml( 'talkpagelinktext' ) ); |
1639 | | - $outText .= Xml::tags( 'li', array(), |
1640 | | - $this->link( $titleObj ) . ' (' . $editLink . ' ' . wfMsgHtml( 'pipe-separator' ) . ' ' . $talkLink . ') ' . $protected ) . "\n"; |
| 1638 | + $outText .= '<li>' . $this->link( $titleObj ) . ' (' . $editLink . ') ' . $protected . '</li>'; |
1641 | 1639 | } |
1642 | 1640 | $outText .= '</ul>'; |
1643 | 1641 | } |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -252,7 +252,6 @@ |
253 | 253 | 'li' elements |
254 | 254 | * (bug 16754) Making arbitrary rows of sortable tables sticky: |
255 | 255 | |- class="unsortable" |
256 | | -* (bug 16617) Add "talk" link to list of templates in edit mode |
257 | 256 | * Show subversion too even if a "normal" version number is available |
258 | 257 | * (bug 16121) Add a note that a page move was without creating a redirect in the |
259 | 258 | move log |