Add back space between size and comment in history pages (fix for r86764)
This commit is contained in:
parent
748633a450
commit
314e0a99ee
1 changed files with 1 additions and 1 deletions
|
|
@ -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>";
|
||||
|
|
|
|||
Loading…
Reference in a new issue