From: Brion Vibber Date: Fri, 16 Jun 2006 03:28:11 +0000 (+0000) Subject: * (bug 6324) Fix regression in enhanced RC alignment X-Git-Tag: 1.31.0-rc.0~56769 X-Git-Url: http://git.cyclocoop.org//%27%40script%40/%27?a=commitdiff_plain;h=e9706ce2c1df9801f6bdd1fcc3c16702d76a860f;p=lhc%2Fweb%2Fwiklou.git * (bug 6324) Fix regression in enhanced RC alignment --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 212fb50406..15944c6ef6 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -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 == diff --git a/includes/ChangesList.php b/includes/ChangesList.php index 4588c0467b..95ac846a3c 100644 --- a/includes/ChangesList.php +++ b/includes/ChangesList.php @@ -432,7 +432,7 @@ class EnhancedChangesList extends ChangesList { # Main line $r .= ''; - $r .= $this->recentChangesFlags( $isnew, false, $unpatrolled, '', $bot ); + $r .= $this->recentChangesFlags( $isnew, false, $unpatrolled, ' ', $bot ); # Timestamp $r .= ' '.$block[0]->timestamp.' '; @@ -476,7 +476,7 @@ class EnhancedChangesList extends ChangesList { $r .= $this->spacerArrow(); $r .= '       '; - $r .= $this->recentChangesFlags( $rc_new, $rc_minor, $rcObj->unpatrolled, '', $rc_bot ); + $r .= $this->recentChangesFlags( $rc_new, $rc_minor, $rcObj->unpatrolled, ' ', $rc_bot ); $r .= ' '; $o = '';