The hook_menu entry that lets users edit their social network connections is bugged. It gives access denied for normal users.
It is currently:
$items['user/%user/edit/gigya'] = array(
'title' => 'Social Networks',
'page callback' => 'gigya_connect',
'page arguments' => array(1, 'user'),
'access callback' => 'user_edit_access',
'access arguments' => array(1),
'load arguments' => array('%map', '%index'),
'weight' => 10,
'type' => MENU_LOCAL_TASK,
'file' => 'gigya.pages.inc',
);
but should be:
$items['user/%user_category/edit/gigya'] = array(
'title' => 'Social Networks',
'page callback' => 'gigya_connect',
'page arguments' => array(1),
'access callback' => 'user_edit_access',
'access arguments' => array(1),
'load arguments' => array('%map', '%index'),
'weight' => 10,
'type' => MENU_LOCAL_TASK,
'file' => 'gigya.pages.inc',
);
Comments
Comment #1
rwohlebHere is a patch for it.
Comment #2
rwohlebComment #3
rwohlebStill no movement on this?
Comment #4
gambaweb commentedthanks for the patch add to 6.x-3.2-dev