? cckref-mapping.patch
Index: modules/contrib/content.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/migrate/modules/contrib/Attic/content.inc,v
retrieving revision 1.1.2.5
diff -u -p -r1.1.2.5 content.inc
--- modules/contrib/content.inc	9 Sep 2009 23:47:35 -0000	1.1.2.5
+++ modules/contrib/content.inc	8 Oct 2009 14:14:51 -0000
@@ -138,6 +138,9 @@ function content_migrate_prepare_node(&$
               // find a node title that matches and get nid.
               if (intval($value) > 0) {
                 $value = intval($value);
+                if ($newvalue = _migrate_xlat_get_new_id('node', $value)) {
+                  $value = $newvalue;
+                }
               }
               break;
 
@@ -146,6 +149,9 @@ function content_migrate_prepare_node(&$
               // find a user name that matches and get uid.
               if (intval($value) > 0) {
                 $value = intval($value);
+                if ($newvalue = _migrate_xlat_get_new_id('user', $value)) {
+                  $value = $newvalue;
+                }
               }
               else {
                 if (($account = user_load(array('name' => $author['name'])))) {
