Use comma-separator message instead of a hardcoded , for better i18n
authorRaimond Spekking <raymond@users.mediawiki.org>
Tue, 9 Sep 2008 05:38:42 +0000 (05:38 +0000)
committerRaimond Spekking <raymond@users.mediawiki.org>
Tue, 9 Sep 2008 05:38:42 +0000 (05:38 +0000)
includes/Exif.php

index 3c1b1ab..6c76a8a 100644 (file)
@@ -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':