diff --git a/ext/handle_pixel/theme.php b/ext/handle_pixel/theme.php index 4099e97f..74f9af4c 100644 --- a/ext/handle_pixel/theme.php +++ b/ext/handle_pixel/theme.php @@ -13,6 +13,10 @@ class PixelFileHandlerTheme extends Themelet { foreach ($exif as $key => $section) { foreach ($section as $name => $val) { if($key == "IFD0") { + // Cheap fix for array'd values in EXIF-data + if (is_array($val)) { + $val = implode(',', $val); + } $head .= html_escape("$name: $val")."
\n"; } }