* To the tune of "America, Fuck Yeah" from "Team America: World Police"
authorÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Sun, 8 May 2005 07:08:04 +0000 (07:08 +0000)
committerÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Sun, 8 May 2005 07:08:04 +0000 (07:08 +0000)
 "Type checking, FUCK YEAH! Coming again, to save the mother fucking day yeah" !
  (we now have typechecking of Exif tags)

includes/Image.php

index d5412d7..d1835a9 100644 (file)
@@ -1142,7 +1142,7 @@ class Image
                $obj = new Exif;
                $valid = $obj->mValidExif;
                foreach($exif as $k => $v) {
-                       if ( ! in_array($k, $valid) )
+                       if ( !in_array($k, $valid) || !$obj->validate($k, $v) )
                                unset($exif[$k]);
                }
                return $exif;