Add back space between size and comment in history pages (fix for r86764)
authorAaron Schulz <aaron@users.mediawiki.org>
Sun, 29 May 2011 20:33:26 +0000 (20:33 +0000)
committerAaron Schulz <aaron@users.mediawiki.org>
Sun, 29 May 2011 20:33:26 +0000 (20:33 +0000)
includes/Linker.php

index a5b887a..f64ab24 100644 (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>";