Index: trunk/phase3/includes/SpecialNewpages.php |
— | — | @@ -316,8 +316,9 @@ |
317 | 317 | protected function feedItemDesc( $row ) { |
318 | 318 | $revision = Revision::newFromId( $row->rev_id ); |
319 | 319 | if( $revision ) { |
320 | | - return '<p>' . htmlspecialchars( wfMsg( 'summary' ) ) . ': ' . |
321 | | - htmlspecialchars( $revision->getComment() ) . "</p>\n<hr />\n<div>" . |
| 320 | + return '<p>' . htmlspecialchars( $revision->getUserText() ) . ': ' . |
| 321 | + htmlspecialchars( $revision->getComment() ) . |
| 322 | + "</p>\n<hr />\n<div>" . |
322 | 323 | nl2br( htmlspecialchars( $revision->getText() ) ) . "</div>"; |
323 | 324 | } |
324 | 325 | return ''; |