* (bug 6324) Fix regression in enhanced RC alignment
authorBrion Vibber <brion@users.mediawiki.org>
Fri, 16 Jun 2006 03:28:11 +0000 (03:28 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Fri, 16 Jun 2006 03:28:11 +0000 (03:28 +0000)
RELEASE-NOTES
includes/ChangesList.php

index 212fb50..15944c6 100644 (file)
@@ -510,6 +510,7 @@ Some default configuration options have changed:
 * (bug 2099) Deleted image files can now be archived and undeleted.
   Set $wgSaveDeletedFiles on and an appropriate directory path in
   $wgFileStore['deleted']['directory']
+* (bug 6324) Fix regression in enhanced RC alignment
 
 
 == Compatibility ==
index 4588c04..95ac846 100644 (file)
@@ -432,7 +432,7 @@ class EnhancedChangesList extends ChangesList {
 
                # Main line
                $r .= '<tt>';
-               $r .= $this->recentChangesFlags( $isnew, false, $unpatrolled, '', $bot );
+               $r .= $this->recentChangesFlags( $isnew, false, $unpatrolled, '&nbsp;', $bot );
 
                # Timestamp
                $r .= ' '.$block[0]->timestamp.' ';
@@ -476,7 +476,7 @@ class EnhancedChangesList extends ChangesList {
 
                        $r .= $this->spacerArrow();
                        $r .= '<tt>&nbsp; &nbsp; &nbsp; &nbsp;';
-                       $r .= $this->recentChangesFlags( $rc_new, $rc_minor, $rcObj->unpatrolled, '', $rc_bot );
+                       $r .= $this->recentChangesFlags( $rc_new, $rc_minor, $rcObj->unpatrolled, '&nbsp;', $rc_bot );
                        $r .= '&nbsp;</tt>';
 
                        $o = '';