148a149,158
> 
>   // If a user has created/linked his account through his facebook login, remove the current password field.
>   // Patch for bug discussion at http://drupal.org/node/1398782
>   $passwd = db_query("SELECT pass FROM {users} WHERE uid=:uid", array(":uid" => $uid))->fetchField();
>   if ($fbid && $passwd == '') {
>     drupal_set_message(t('Kindly set your password to secure your account details.'), 'warning', FALSE);
>     unset($form['account']['current_pass']);
>     $form['account']['current_pass_required_values']['#value'] = array();
>   }
>   
