Closed (fixed)
Project:
Subscriptions
Version:
6.x-1.1
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
22 Oct 2009 at 16:35 UTC
Updated:
17 Nov 2009 at 23:00 UTC
Jump to comment: Most recent file
Comments
Comment #1
salvisNow that I look at it, I don't think this has ever worked right. Are you implying it did work in BETA5?
Comment #2
break9 commentedyes it worked for me since Dec 2008 when I first added this module.
Comment #3
salvisI also thought it worked, but I cannot find any code in BETA5 (nor 1.1) that would actually do make it work...
Comment #4
break9 commentedYep, it has worked great for the last year until I updated. I have thousands of users that are affected by the change. they all noticed immediately. Hence me in a deep pile of ___.
Any and all help is appreciated on both issues.
Comment #5
break9 commentedhere is the complete working as expected version of subscriptions I had on my site. Niether this nor the http://drupal.org/node/610106 issues are present in the version. zip is attached
The only code changes i made were:
subscriptions.taxonomy.module;
********remove the words "to content in"
subscription.module;
$items['user/%user/subscriptions/'. $stype] = array(
'title' => $data['title'],
********'type' => MENU_CALLBACK,
'file' => 'subscriptions.admin.inc',
'page callback' => 'subscriptions_page',
'page arguments' => array(1, $stype),
'access callback' => '_subscriptions_access',
'access arguments' => array(1, $data['access']),
'weight' => (isset($data['weight']) ? $data['weight'] : 0),
);
Comment #6
salvisI've committed a fix to the -dev version (give it up to 12h to be repackaged).
Please let us know if this works for you now.
(Unfortunately, I don't know what to do about your other issue...)
Comment #7
break9 commentedI will test and report back.
Yes, the other issue is very strange? i don't know why it doesn't want the $account parameter passed to the function call. It is unfortunate since that is the primary interface for this module on our site. I will have to use the older release until I can sort out what is happening.
Thanks for the update on this issue, and the module in general it is great!!