Hi there,

The module looks cool. Still I expected that a user's status field should be integrated with the user's profile.

Possible new feature?

Comments

icecreamyou’s picture

Assigned: icecreamyou » Unassigned
Status: Needs review » Active

Put this at the end of your facebook_status.module file (don't include the PHP tags) and see if it works. If it does, I'll commit it.

function facebook_status_user($op, &$edit, &$account, $category = NULL) {
  if ($op == 'categories') {
    return array(array(
      'name' => 'facebook_status',
      'title' => t('Status'),
      'weight' => 0,
    ));
  }
  if ($op == 'view') {
    $items['status'] = array('title' => t('Status'),
      'value' => facebook_status_display_b(NULL, $account->uid, 0), //facebook_status_form_display($account->uid) in Drupal 5
      'class' => 'facebook_status profile',
    );
    return array('facebook_status' => $items);
  }
}
icecreamyou’s picture

Assigned: Unassigned » icecreamyou
Status: Active » Needs review
icecreamyou’s picture

Assigned: Unassigned » icecreamyou
Status: Active » Fixed

Turns out that code didn't work but I committed code that does to both branches.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.