From 5e05cfb7bd05c6d5a2dc70313d3f70ced0fdf189 Mon Sep 17 00:00:00 2001 From: Raimond Spekking Date: Tue, 9 Sep 2008 05:38:42 +0000 Subject: [PATCH] Use comma-separator message instead of a hardcoded , for better i18n --- includes/Exif.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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': -- 2.20.1