--- sites/all/modules/patched/fbconnect.old/fbconnect.pages.inc 2011-09-20 14:44:17.000000000 +1200
+++ sites/all/modules/contrib/fbconnect/fbconnect.pages.inc 2011-09-23 08:00:50.000000000 +1200
@@ -196,7 +196,6 @@
       '#description' => t('Log in using your facebook account'),
       '#type' => 'item',
       '#markup' => l(t('Log in to Facebook'), $login_url),
-      '#weight' => 0,
     );
     return $form;
 }
@@ -297,7 +296,6 @@
     '#title' => t('Let my Facebook friends see me on @site', array('@site' => $conf['invite_name'])),
     '#description' => t('My Facebook friends will be able to see that I own an account on this website.'),
     '#default_value' => isset($account->data['fb_visible']) ? $account->data['fb_visible'] : NULL,
-    '#weight' => 0,
   );
 
   // Whether user picture is enabled,
@@ -308,7 +306,6 @@
       '#title' => t('Use my Facebook picture as user picture'),
       '#description' => t('Your picture will be loaded from facebook.'),
       '#default_value' => isset($account->data['fb_avatar']) ? $account->data['fb_avatar'] : NULL,
-      '#weight' => 1,
     );
   }
 
@@ -331,14 +328,12 @@
     '#type' => 'fieldset',
     '#collapsed' => TRUE,
     '#collapsible' => TRUE,
-    '#weight' => 2,
   );
 
   $form['fbconnect']['profile'] = array(
     '#type' => 'item',
     '#title' => t('Linked to this Facebook account'),
     '#value' => '<fb:name uid="' . $account->fbuid . '" useyou="false" linked="true"></fb:name>',
-    '#weight' => 3,
   );
 
   $form['fbconnect']['unlink'] = array(
@@ -346,13 +341,11 @@
     '#description' => t('Click here to unlink this Facebook account'),
     '#value' => t('Unlink'),
     '#access' => !!facebook_client(), // don't show unlink button if fbconnect is'nt properly configured
-    '#weight' => 4,
   );
 
   $form['submit'] = array(
     '#type' => 'submit',
     '#value' => t('Save settings'),
-    '#weight' => 5,
   );
   return $form;
 }

