Index: modules/user/user.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/user/user.module,v
retrieving revision 1.1227
diff -u -p -r1.1227 user.module
--- modules/user/user.module	18 Dec 2010 00:56:18 -0000	1.1227
+++ modules/user/user.module	19 Dec 2010 20:35:06 -0000
@@ -181,8 +181,9 @@ function user_uri($user) {
  */
 function user_field_info_alter(&$info) {
   // Add the 'user_register_form' instance setting to all field types.
-  foreach ($info as $field_type => $field_type_info) {
-    $info[$field_type]['instance_settings'] += array(
+  foreach ($info as $field_type => &$field_type_info) {
+    $field_type_info += array('instance_settings' => array());
+    $field_type_info['instance_settings'] += array(
       'user_register_form' => FALSE,
     );
   }
