diff -up family-5.x-1.0/family.module family-5.x-1.1/family.module
--- family-5.x-1.0/family.module	2008-03-01 11:10:58.000000000 -0800
+++ family-5.x-1.1/family.module	2008-03-01 11:12:44.000000000 -0800
@@ -148,63 +148,63 @@ function family_perm() {
 /**
  * Implementation of hook_user().
  */
-function family_user($op, &$edit, &$account, $category = NULL) {
+//Commented for troubleshooting. 
+//function family_user($op, &$edit, &$account, $category = NULL) {
 
-  switch ($op) {
+//  switch ($op) {
 
-  case ('insert'):
-  case ('update'):
-  case ('submit'):
-  case ('login'):
-  case ('logout'):
-  case ('delete'):
-      break;
-
-  case ('form'):
-      if ($category == 'account') {
-	$form['family'] = array(
-	  '#type' => 'fieldset',
-	  '#title' => t('Family association'),
-	  '#collapsible' => TRUE,
-	  '#weight' => 4);
-	$form['family']['family_link'] = array(
-	  '#type' => 'textfield',
-	  '#title' => t('My family link'),
-	  '#default_value' => $edit['family_link'],
-	  '#description' => t('The node number for the family_individual that represents you.'));
-	$form['family']['family_tree_root'] = array(
-	  '#type' => 'textfield',
-	  '#title' => t('Tree root individual'),
-	  '#default_value' => $edit['family_tree_root'],
-	  '#description' => t('The node number for the family_individual that your default tree is based on.'));
-	$form['family']['family_tree_type'] = array(
-	  '#type' => 'select',
-	  '#options' => array(
-	    'ANS' => 'Ancestry',
-	    'DESC' => 'Descendency',
-	    'PED' => 'Pedigree',
-	  ),
-	  '#default_value' => $edit['family_tree_type'],
-	  '#description' => t('The type of tree you prefer to see by default.'));
-	$form['family']['family_tree_depth'] = array(
-	  '#type' => 'textfield',
-	  '#title' => t('Tree depth'),
-	  '#default_value' => $edit['family_tree_depth'],
-	  '#description' => t('The number of degrees to show on your default family tree.'));
-	return $form;
-      }
-  case ('view'):
-      return array(
-	t("Family Association") => array(
-	  array('title' => t("My family link"), 'value' => l("Me","node/".$account->family_link)),
-	  # description => t('The node number for the family_individual that represents you.'));
-	  array('title' => t("Tree root individual"), 'value' => l("root","node/".$account->family_tree_root)),
-	  # description => t('The node number for the family_individual that your default tree is based on.'));
-	  array('title' => t("Tree type"), 'value' => $account->family_tree_type),
-	  # description => t('The type of tree you prefer to see by default.'));
-	  array('title' => t("Tree depth"), 'value' => $account->family_tree_depth),
-	  # description => t('The number of degrees to show on your default family tree.'));
-	));
-  }
-}
+//  case ('insert'):
+//  case ('update'):
+//  case ('submit'):
+//  case ('login'):
+//  case ('logout'):
+//  case ('delete'):
+//      break;
 
+//  case ('form'):
+//      if ($category == 'account') {
+//	$form['family'] = array(
+//	  '#type' => 'fieldset',
+//	  '#title' => t('Family association'),
+//	  '#collapsible' => TRUE,
+//	  '#weight' => 4);
+//	$form['family']['family_link'] = array(
+//	  '#type' => 'textfield',
+//	  '#title' => t('My family link'),
+//	  '#default_value' => $edit['family_link'],
+//	  '#description' => t('The node number for the family_individual that represents you.'));
+//	$form['family']['family_tree_root'] = array(
+//	  '#type' => 'textfield',
+//	  '#title' => t('Tree root individual'),
+//	  '#default_value' => $edit['family_tree_root'],
+//	  '#description' => t('The node number for the family_individual that your default tree is based on.'));
+//	$form['family']['family_tree_type'] = array(
+//	  '#type' => 'select',
+//	  '#options' => array(
+//	    'ANS' => 'Ancestry',
+//	    'DESC' => 'Descendency',
+//	    'PED' => 'Pedigree',
+//	  ),
+//	  '#default_value' => $edit['family_tree_type'],
+//	  '#description' => t('The type of tree you prefer to see by default.'));
+//	$form['family']['family_tree_depth'] = array(
+//	  '#type' => 'textfield',
+//	  '#title' => t('Tree depth'),
+//	  '#default_value' => $edit['family_tree_depth'],
+//	  '#description' => t('The number of degrees to show on your default family tree.'));
+//	return $form;
+//     }
+//  case ('view'):
+//      return array(
+//	t("Family Association") => array(
+//	  array('title' => t("My family link"), 'value' => l("Me","node/".$account->family_link)),
+//	  # description => t('The node number for the family_individual that represents you.'));
+//	  array('title' => t("Tree root individual"), 'value' => l("root","node/".$account->family_tree_root)),
+//	  # description => t('The node number for the family_individual that your default tree is based on.'));
+//	  array('title' => t("Tree type"), 'value' => $account->family_tree_type),
+//	  # description => t('The type of tree you prefer to see by default.'));
+//	  array('title' => t("Tree depth"), 'value' => $account->family_tree_depth),
+//	  # description => t('The number of degrees to show on your default family tree.'));
+//	));
+//  }
+//}
\ No newline at end of file
Only in family-5.x-1.1: form.inc
