From 386d797d8b1d1f97113b0dad67c2d09b29386bf4 Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Sat, 18 Feb 2012 14:28:38 +0000 Subject: [PATCH] Fix extraneous quote from r111800 Doesn't fix Niklas' issue, but it tidies it up for the moment --- includes/actions/HistoryAction.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ); -- 2.20.1