--- image.imagemagick.inc	4 Sep 2005 22:49:26 -0000	1.2
+++ image.imagemagick.inc	22 Nov 2006 15:17:57 -0000
@@ -19,7 +19,14 @@
     form_set_error('image_imagemagick_convert', t('%file does not exist or is not executable.', array('%file' => "<em>$convert_file</em>")));
   }
   
-  return form_textfield(t('Location of the "convert" binary'), 'image_imagemagick_convert', $convert_file, 64, 64);
+  $form = array(
+    '#type' => 'textfield',
+    '#title' => t('Location of the "convert" binary'),
+    '#default_value' => $convert_file,
+    '#size' => 64,
+    '#maxlength' => 64,
+  );
+  return $form;
 }
 
 /**
@@ -97,4 +104,3 @@
   }
 } 
 
-?>
