Users without 'administer users' privileges will be unable to maintain custom defined subscriptions on their profile page. The corresponding tab will be empty. To fix this, a simple edit is required:
Row 139 in function notifications_custom_user_form of notifications_custom.module reads

if ($subs->visibility || user_access('administer users')) {

it should read

if ($subs->visibility || user_access('manage own subscriptions')) {

Hope I am not misinterpreting the relevant code.. Best,
John

Comments

avpaderno’s picture

Version: 6.x-2.0-beta2 » 6.x-2.x-dev
Issue summary: View changes
Status: Active » Closed (outdated)

I am closing this issue, as Drupal 6 is now not supported.