From: Raimond Spekking Date: Tue, 9 Sep 2008 05:38:42 +0000 (+0000) Subject: Use comma-separator message instead of a hardcoded , for better i18n X-Git-Tag: 1.31.0-rc.0~45398 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/?a=commitdiff_plain;h=5e05cfb7bd05c6d5a2dc70313d3f70ced0fdf189;p=lhc%2Fweb%2Fwiklou.git Use comma-separator message instead of a hardcoded , for better i18n --- diff --git a/includes/Exif.php b/includes/Exif.php index 3c1b1ab356..6c76a8a65c 100644 --- a/includes/Exif.php +++ b/includes/Exif.php @@ -799,7 +799,7 @@ class FormatExif { $fullTag = $tag . '-' . $subTag ; $flashMsgs[] = $this->msg( $fullTag, $subValue ); } - $tags[$tag] = join( ',', $flashMsgs ); + $tags[$tag] = implode( wfMsg( 'comma-separator' ), $flashMsgs ); break; case 'FocalPlaneResolutionUnit':