From: Ævar Arnfjörð Bjarmason Date: Fri, 22 Jul 2005 20:57:15 +0000 (+0000) Subject: * Removed the 1024 byte limit on ASCII tags, not in accordance with the spec X-Git-Tag: 1.5.0beta4~61 X-Git-Url: https://git.cyclocoop.org/%7B%24admin_url%7Dmembres/cotisations/rappels.php?a=commitdiff_plain;h=d74425daea425dd2e74d0a7b665c3dd7b075b2b5;p=lhc%2Fweb%2Fwiklou.git * Removed the 1024 byte limit on ASCII tags, not in accordance with the spec --- 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; }