* Removed the 1024 byte limit on ASCII tags, not in accordance with the spec
authorÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Fri, 22 Jul 2005 20:57:15 +0000 (20:57 +0000)
committerÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Fri, 22 Jul 2005 20:57:15 +0000 (20:57 +0000)
includes/Exif.php

index 7e90175..629a946 100644 (file)
@@ -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;
        }