Add back space between size and comment in history pages (fix for r86764)

This commit is contained in:
Aaron Schulz 2011-05-29 20:33:26 +00:00
parent 748633a450
commit 314e0a99ee

View file

@ -1377,7 +1377,7 @@ class Linker {
if ( $rev->isDeleted( Revision::DELETED_COMMENT ) && $isPublic ) {
$block = " <span class=\"comment\">" . wfMsgHtml( 'rev-deleted-comment' ) . "</span>";
} else if ( $rev->userCan( Revision::DELETED_COMMENT ) ) {
$block = self::commentBlock( $rev->getComment( Revision::FOR_THIS_USER ),
$block = ' ' . self::commentBlock( $rev->getComment( Revision::FOR_THIS_USER ),
$rev->getTitle(), $local );
} else {
$block = " <span class=\"comment\">" . wfMsgHtml( 'rev-deleted-comment' ) . "</span>";