From 91244b206bb06455fc18f0af35ee71ae1bab6f9f Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 27 Apr 2005 21:42:37 +0000 Subject: [PATCH] Add a space to make output look less horrible --- includes/SpecialListusers.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/SpecialListusers.php b/includes/SpecialListusers.php index e9a5676e7a..3794c851d8 100644 --- a/includes/SpecialListusers.php +++ b/includes/SpecialListusers.php @@ -155,7 +155,7 @@ class ListUsersPage extends QueryPage { (is_null( $result ) || ( $this->previousResult->title != $result->title ) ) ) { // Different username, give back name(group1,group2) $name = $skin->makeLink( $wgContLang->getNsText($this->previousResult->namespace) . ':' . $this->previousResult->title, $this->previousResult->title ); - $name .= $this->concatGroups ? '('.substr($this->concatGroups,0,-1).')' : ''; + $name .= $this->concatGroups ? ' ('.substr($this->concatGroups,0,-1).')' : ''; $this->clearGroups(); } -- 2.20.1