Index: image_fupload_imagefield/image_fupload_imagefield.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/image_fupload/image_fupload_imagefield/image_fupload_imagefield.module,v
retrieving revision 1.36
diff -u -p -r1.36 image_fupload_imagefield.module
--- image_fupload_imagefield/image_fupload_imagefield.module	20 Sep 2009 19:05:59 -0000	1.36
+++ image_fupload_imagefield/image_fupload_imagefield.module	27 Sep 2009 23:21:46 -0000
@@ -603,6 +603,9 @@ function _fupload_import_widget_files_di
     global $user;
     $widget_file_path = token_replace($widget_file_path, 'user', $user);
   }
+  if (!is_dir(file_directory_path() .'/'. $widget_file_path)) {
+    mkdir(file_directory_path() .'/'. $widget_file_path, 0777, TRUE);
+  }
   return file_directory_path() .'/'. $widget_file_path;
 }
 
