From: Brion Vibber Date: Sun, 29 Jul 2007 23:39:54 +0000 (+0000) Subject: Hopefully fix the problem with EXIF field names being listed as ... X-Git-Tag: 1.31.0-rc.0~51937 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/?a=commitdiff_plain;h=554b1d1f1f0ca3167871153c5110922382048d3a;p=lhc%2Fweb%2Fwiklou.git Hopefully fix the problem with EXIF field names being listed as etc in the image table. Since the type is already added to the sub-name, presumably the type ('exif') should not be added in again here. --- diff --git a/includes/media/Bitmap.php b/includes/media/Bitmap.php index 17e99306c6..dfa794bcff 100644 --- a/includes/media/Bitmap.php +++ b/includes/media/Bitmap.php @@ -278,7 +278,7 @@ class BitmapHandler extends ImageHandler { self::addMeta( $result, in_array( $tag, $visibleFields ) ? 'visible' : 'collapsed', 'exif', - "exif-$tag", + $tag, $value ); }