The latest version of the User Activity module conflicts with the Activity Module (http://drupal.org/project/activity).

I seem to remember that this module was referenced by the path 'user_activity'. Now it is referenced by the path 'activity' (see below). It does however still reference itself using user_activity in the admin module.

I think it the 'activity' references should be reverted back to 'user_activity'.

/**
* Implementation of hook_menu().
*/
function user_activity_menu($may_cache) {
$items = array();

if ($may_cache) {
$items[] = array('path' => 'activity',
'title' => t('User activity'),
'callback' => 'user_activity_browse',
'access' => user_access('access user profiles'),
'type' => MENU_SUGGESTED_ITEM,
);
$items[] = array('path' => 'activity/feed',
'title' => t('User activity feed'),
'callback' => 'user_activity_feed',
'access' => user_access('access user profiles'),
'type' => MENU_CALLBACK,
);
$items[] = array(
'path' => 'admin/user/user_activity',
'title' => t('User activity'),
'description' => t('Configure how the activity is calculated.'),
'callback' => 'drupal_get_form',
'callback arguments' => 'user_activity_settings',
'access' => user_access('administer user activity'),
);
}

return $items;
}

--
Ade Atobatele

Comments

sanduhrs’s picture

Assigned: Unassigned » sanduhrs
Status: Active » Fixed

Fixed in DRUPAL-5 and HEAD.
Thanks.

Anonymous’s picture

Status: Fixed » Closed (fixed)

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