Index: imagefield_crop.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/imagefield_crop/imagefield_crop.module,v
retrieving revision 1.1.2.4
diff -u -u -p -r1.1.2.4 imagefield_crop.module
--- imagefield_crop.module	21 Jan 2008 18:42:40 -0000	1.1.2.4
+++ imagefield_crop.module	5 Feb 2008 05:29:08 -0000
@@ -212,7 +212,8 @@ function _imagefield_crop_widget_prepare
     $file = (array)$file;
     if (strpos($file['filemime'], 'image') !== FALSE) {
       if ($field['widget']['use_unscaled']) {
-        file_copy($unscaled = $file['filepath'], $file['filepath'] .'.unscaled', FILE_EXISTS_REPLACE);
+        $unscaled = $file['filepath'];
+        file_copy($unscaled, $file['filepath'] .'.unscaled', FILE_EXISTS_REPLACE);
       }
       $file = _imagefield_scale_image($file, $field['widget']['croparea']);
       
