From d74425daea425dd2e74d0a7b665c3dd7b075b2b5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Fri, 22 Jul 2005 20:57:15 +0000 Subject: [PATCH] * Removed the 1024 byte limit on ASCII tags, not in accordance with the spec --- includes/Exif.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/includes/Exif.php b/includes/Exif.php index 7e901759b3..629a946b9e 100644 --- a/includes/Exif.php +++ b/includes/Exif.php @@ -404,11 +404,6 @@ class Exif { return false; } - if ( strlen($in) > 1024 ) { // TODO: This might not be according to the spec - $this->debug( $in, __FUNCTION__, 'input was too long' ); - return false; - } - return true; } -- 2.20.1