This test is failing in location_form(...) :

/**
 * Get form elements for editing locations on an object.
 */
function location_form($settings, $locations) {

 if (!isset($settings['multiple']['max']) || $settings['multiple']['max'] == 0) {
    // Location not enabled for this object type.
    // Bail out early.
    return array();
  }

when being called from location_user_user(...)

    case 'form':
      if ($category == 'account') {
        if ((($user->uid == $account->uid) && user_access('set own user location')) || user_access('administer user locations')) {
          $settings = variable_get('location_settings_user', array());
          $form['locations'] = location_form($settings, $account->locations);
          return $form;
        }
      }
      break;

because the variable "location_settings_user" isn't set, hence variable_get returns an empty array().

Comments

yesct’s picture

Status: Active » Postponed (maintainer needs more info)

Please check to see if this is still a problem in the new release. If it is, reply with a new summary and set the status back to active.

fizk’s picture

I'm not using location anymore, you can test and/or close.

yesct’s picture

Status: Postponed (maintainer needs more info) » Postponed
Issue tags: +location bdragon check

thanks for the reply. I'll see if I can get someone to follow up on this.

legolasbo’s picture

Issue summary: View changes
Status: Postponed » Closed (outdated)

Closing old D6 issues as D6 is end of life