Index: trunk/extensions/FlaggedRevs/specialpages/StableVersions_body.php |
— | — | @@ -56,7 +56,7 @@ |
57 | 57 | |
58 | 58 | public function formatRow( $row ) { |
59 | 59 | global $wgLang, $wgUser; |
60 | | - |
| 60 | + $rdatim = $wgLang->timeanddate( wfTimestamp( TS_MW, $row->rev_timestamp ), true ); |
61 | 61 | $fdatim = $wgLang->timeanddate( wfTimestamp( TS_MW, $row->fr_timestamp ), true ); |
62 | 62 | $fdate = $wgLang->date( wfTimestamp( TS_MW, $row->fr_timestamp ), true ); |
63 | 63 | $ftime = $wgLang->time( wfTimestamp( TS_MW, $row->fr_timestamp ), true ); |
— | — | @@ -64,12 +64,10 @@ |
65 | 65 | $fdatim, |
66 | 66 | $this->skin->userLink( $row->fr_user, $row->user_name ) . |
67 | 67 | ' ' . $this->skin->userToolLinks( $row->fr_user, $row->user_name ), |
68 | | - $fdate, $ftime, $row->user_name ); |
69 | | - |
| 68 | + $fdate, $ftime, $row->user_name |
| 69 | + ); |
70 | 70 | $lev = ( $row->fr_quality >=1 ) ? wfMsgHtml('hist-quality') : wfMsgHtml('hist-stable'); |
71 | | - $link = $this->skin->makeKnownLinkObj( $this->page, $ftime, |
72 | | - 'stableid='.$row->fr_rev_id ); |
73 | | - |
| 71 | + $link = $this->skin->makeKnownLinkObj( $this->page, $rdatim, 'stableid='.$row->fr_rev_id ); |
74 | 72 | return '<li>'.$link.' ('.$review.') <strong>['.$lev.']</strong></li>'; |
75 | 73 | } |
76 | 74 | } |