From: Ævar Arnfjörð Bjarmason Date: Mon, 9 Jan 2006 13:19:17 +0000 (+0000) Subject: * Adding a space after the implode() comma X-Git-Tag: 1.6.0~661 X-Git-Url: http://git.cyclocoop.org/%28?a=commitdiff_plain;h=0b5371320a37c99b1c88ef9be0e8901cb58719f8;p=lhc%2Fweb%2Fwiklou.git * Adding a space after the implode() comma --- diff --git a/includes/SpecialVersion.php b/includes/SpecialVersion.php index e1e8b7c0fa..c6bd24914a 100644 --- a/includes/SpecialVersion.php +++ b/includes/SpecialVersion.php @@ -200,7 +200,7 @@ class SpecialVersion { $one = array_map( array( &$this, 'arrayToString' ), $t ); $two = $this->arrayToString( $list[$cnt - 1] ); - return implode( ',', $one ) . " and $two"; + return implode( ', ', $one ) . " and $two"; } }