Index: sites/all/modules/cck/modules/content_copy/content_copy.module
===================================================================
--- sites/all/modules/cck/modules/content_copy/content_copy.module	(revision 2103)
+++ sites/all/modules/cck/modules/content_copy/content_copy.module	(working copy)
@@ -267,7 +267,7 @@
 
   // Add weights of non-CCK fields.
   if ($extra = variable_get('content_extra_weights_'. $form_values['type_name'], array())) {
-    $output .= "\$content[extra]  = ". var_export((array) $extra, TRUE) .";\n";
+    $output .= "\$content['extra']  = ". var_export((array) $extra, TRUE) .";\n";
   }
 
   return $output;
@@ -606,7 +606,7 @@
   $string = "";
   if (array_key_exists('submissions', $GLOBALS['content_copy'])) {
     foreach ($GLOBALS['content_copy']['submissions'] as $form_type => $form) {
-      $string .= "\$content[$form_type]  = ". var_export((array) $form, TRUE) .";\n";
+      $string .= "\$content['$form_type']  = ". var_export((array) $form, TRUE) .";\n";
     }
     return $string;
   }
