From 08d61383644fbbdbc58bc76f1d9bbec4afaf0898 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 7 Oct 2009 18:38:55 +0000 Subject: [PATCH] Spacing tweak -- $histlink and $difftext now belong directly together, they get a pipe-separator message between them. The leftover extra space was harmless with default (which uses regular space) but looked funny on en.wikipedia with customized pipe-separator using   --- 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 c87f6c9167..eada167696 100644 --- a/includes/specials/SpecialContributions.php +++ b/includes/specials/SpecialContributions.php @@ -651,7 +651,7 @@ class ContribsPager extends ReverseChronologicalPager { $del = ''; } - $ret = "{$del}{$d} {$histlink} {$difftext} {$nflag}{$mflag} {$link}{$userlink} {$comment} {$topmarktext}"; + $ret = "{$del}{$d} {$histlink}{$difftext} {$nflag}{$mflag} {$link}{$userlink} {$comment} {$topmarktext}"; # Denote if username is redacted for this edit if( $rev->getVisibility() & Revision::DELETED_USER ) { -- 2.20.1