Index: trunk/phase3/includes/HistoryPage.php |
— | — | @@ -259,8 +259,11 @@ |
260 | 260 | if( $rev->getComment() == '' ) { |
261 | 261 | global $wgContLang; |
262 | 262 | $title = wfMsgForContent( 'history-feed-item-nocomment', |
263 | | - $rev->getUserText(), |
264 | | - $wgContLang->timeanddate( $rev->getTimestamp() ) ); |
| 263 | + $rev->getUserText(), |
| 264 | + $wgContLang->timeanddate( $rev->getTimestamp() ), |
| 265 | + $wgContLang->date( $rev->getTimestamp() ), |
| 266 | + $wgContLang->time( $rev->getTimestamp() ) |
| 267 | + ); |
265 | 268 | } else { |
266 | 269 | $title = $rev->getUserText() . |
267 | 270 | wfMsgForContent( 'colon-separator' ) . |