Index: image.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/image/image.module,v
retrieving revision 1.74.2.6
diff -u -r1.74.2.6 image.module
--- image.module	30 Dec 2003 22:29:18 -0000	1.74.2.6
+++ image.module	1 Jan 2004 20:38:32 -0000
@@ -492,7 +492,7 @@
             }
 
             // Pull out iptc data and populate any node elements that are not already set.
-            if ($proposed = _image_iptc_map($image_details['ipct_info'])) {
+            if ($proposed = _image_iptc_map($image_details['iptc_info'])) {
               foreach ($proposed as $key => $value) {
                 if (!$node->$key) {
                   $node->$key = $value;
@@ -545,7 +545,7 @@
       $image_details = _get_image_details($node->image_path);
     }
 
-    $node->iptc = $image_details['ipct_info'];
+    $node->iptc = $image_details['iptc_info'];
     $node->exif = _image_get_exif($node->image_path);
 
     $node->format = strtolower($image_details['type']);
@@ -1520,7 +1520,7 @@
             $node->image_path = _image_tempname($node);
             $node->thumb_path = _image_tempthumbname($node);
 
-            $node->iptc = $image_details['ipct_info'];
+            $node->iptc = $image_details['iptc_info'];
             $node->exif = _image_get_exif($node->image_path);
 
             $node->format = strtolower($image_details['type']);
