From: Sam Reed Date: Sat, 18 Feb 2012 14:28:38 +0000 (+0000) Subject: Fix extraneous quote from r111800 X-Git-Tag: 1.31.0-rc.0~24637 X-Git-Url: http://git.cyclocoop.org/%28?a=commitdiff_plain;h=386d797d8b1d1f97113b0dad67c2d09b29386bf4;p=lhc%2Fweb%2Fwiklou.git Fix extraneous quote from r111800 Doesn't fix Niklas' issue, but it tidies it up for the moment --- diff --git a/includes/actions/HistoryAction.php b/includes/actions/HistoryAction.php index 35e3c88f32..4bdaebbf63 100644 --- a/includes/actions/HistoryAction.php +++ b/includes/actions/HistoryAction.php @@ -577,7 +577,7 @@ class HistoryPager extends ReverseChronologicalPager { $prevSize = $prevRev ? $prevRev->getSize() : 0; $sDiff = ChangesList::showCharacterDifference( $prevSize, $rev->getSize() ); $fSize = Linker::formatRevisionSize($rev->getSize()); - $s .= "' . . $fSize $sDiff . . "; + $s .= " . . $fSize $sDiff . . "; $s .= Linker::revComment( $rev, false, true );