--- supported/profile.inc.orig	2009-04-05 02:24:18.000000000 +1000
+++ supported/profile.inc	2010-01-07 15:19:15.000000000 +1100
@@ -43,7 +43,7 @@ function profile_user_import_after_save(
   
   // data column in the user table needs to be updated
   if ($data != $old_data) {   
-    db_query("UPDATE {users} SET data = '%s' WHERE uid = %d LIMIT 1", serialize($data), $account->uid);
+    db_query("UPDATE {users} SET data = '%s' WHERE uid = %d", serialize($data), $account->uid);
   } 
 
   return;
@@ -78,7 +78,7 @@ function profile_user_import_save_profil
           db_query("INSERT INTO {profile_values} (fid,uid,value) VALUES(%d,%d,'%s')", $field->fid, $uid, $value);
         }
         else {
-          db_query("UPDATE {profile_values} SET value = '%s' WHERE fid = %d AND uid = %d LIMIT 1", $value, $field->fid, $uid);  
+          db_query("UPDATE {profile_values} SET value = '%s' WHERE fid = %d AND uid = %d", $value, $field->fid, $uid);  
         }
         
         $data[$field->name] = $value; 
@@ -94,7 +94,7 @@ function profile_user_import_save_profil
       db_query("INSERT INTO {profile_values} (fid,uid,value) VALUES(%d,%d,'%s')", $field->fid, $uid, $value);
     }
     else {  
-     db_query("UPDATE {profile_values} SET value = '%s' WHERE fid = %d AND uid = %d LIMIT 1", $value, $field->fid, $uid);
+     db_query("UPDATE {profile_values} SET value = '%s' WHERE fid = %d AND uid = %d", $value, $field->fid, $uid);
       $data[$field->name] = $value;
     }
   }
