From 554b1d1f1f0ca3167871153c5110922382048d3a Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Sun, 29 Jul 2007 23:39:54 +0000 Subject: [PATCH] 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. --- includes/media/Bitmap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ); } -- 2.20.1