From: Robert Leverington Date: Tue, 12 Aug 2008 00:25:35 +0000 (+0000) Subject: * (bug 15127) Add an additional space between the directionality marker and summary... X-Git-Tag: 1.31.0-rc.0~45945 X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dmembres/cotisations/gestion/rappel_supprimer.php?a=commitdiff_plain;h=5c9141306632a9c168d201722757f73f6bdcffef;p=lhc%2Fweb%2Fwiklou.git * (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. --- 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' ); }