From 5c9141306632a9c168d201722757f73f6bdcffef Mon Sep 17 00:00:00 2001 From: Robert Leverington Date: Tue, 12 Aug 2008 00:25:35 +0000 Subject: [PATCH] * (bug 15127) Add an additional space between the directionality marker and summary as Opera 9.50 and greater does not display the space. This is a safe work around as all other browsers will simply ignore this extra space. --- includes/specials/SpecialContributions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/specials/SpecialContributions.php b/includes/specials/SpecialContributions.php index 8eea390ef9..c9798e2fc4 100644 --- a/includes/specials/SpecialContributions.php +++ b/includes/specials/SpecialContributions.php @@ -155,7 +155,7 @@ class ContribsPager extends ReverseChronologicalPager { $mflag = ''; } - $ret = "{$d} {$histlink} {$difftext} {$nflag}{$mflag} {$link}{$userlink}{$comment} {$topmarktext}"; + $ret = "{$d} {$histlink} {$difftext} {$nflag}{$mflag} {$link}{$userlink} {$comment} {$topmarktext}"; if( $rev->isDeleted( Revision::DELETED_TEXT ) ) { $ret .= ' ' . wfMsgHtml( 'deletedrev' ); } -- 2.20.1