Index: trunk/extensions/FlaggedRevs/specialpages/StablePages_body.php |
— | — | @@ -67,15 +67,18 @@ |
68 | 68 | global $wgLang; |
69 | 69 | $title = Title::makeTitle( $row->page_namespace, $row->page_title ); |
70 | 70 | # Link to page |
71 | | - $link = $this->skin->makeKnownLinkObj( $title, $title->getPrefixedText() ); |
| 71 | + $link = $this->skin->link( $title ); |
72 | 72 | # Helpful utility links |
73 | 73 | $utilLinks = array(); |
74 | | - $utilLinks[] = $this->skin->makeKnownLinkObj( $title, |
75 | | - wfMsgHtml( 'stablepages-config' ), 'action=protect' ); |
76 | | - $utilLinks[] = $this->skin->makeKnownLinkObj( $title, |
77 | | - wfMsgHtml( 'history' ), 'action=history' ); |
78 | | - $utilLinks[] = $this->skin->makeKnownLinkObj( SpecialPage::getTitleFor( 'Log/stable' ), |
79 | | - wfMsgHtml( 'stable-logpage' ), 'page=' . $title->getPrefixedText() ); |
| 74 | + $utilLinks[] = $this->skin->link( $title, |
| 75 | + wfMsgHtml( 'stablepages-config' ), |
| 76 | + array(), array( 'action' => 'protect' ) ); |
| 77 | + $utilLinks[] = $this->skin->link( $title, |
| 78 | + wfMsgHtml( 'history' ), |
| 79 | + array(), array( 'action' => 'history' ) ); |
| 80 | + $utilLinks[] = $this->skin->link( SpecialPage::getTitleFor( 'Log/stable' ), |
| 81 | + wfMsgHtml( 'stable-logpage' ), |
| 82 | + array(), array( 'page' => $title->getPrefixedText() ) ); |
80 | 83 | # Autoreview/review restriction level |
81 | 84 | $restr = ''; |
82 | 85 | if( $row->fpc_level != '' ) { |