Closed (fixed)
Project:
Subscriptions
Version:
5.x-1.4
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
5 Feb 2007 at 11:52 UTC
Updated:
1 Mar 2007 at 04:30 UTC
After updating to version 5.x-1.3, receipt these messages in log, whenever somebody enters a new commentary
Missing argument 3 for subscriptions_comment_page() in line 633 of the /var/www/html/modules/subscriptions/subscriptions.module file.
some idea that it can be
Thanks
Comments
Comment #1
manal commentedConfirmed
this function is called with a missing argument at line 389, from within the function subscriptions_mailvars:
$page = subscriptions_comment_page($ssid, $nid);
where it should be called with 3 arguments:
function subscriptions_comment_page($comment, $cid, $nid) {
...
}
Comment #2
promatow commentedSame problem, both on cron and on-action event.
Comment #3
arthurf commentedthis is now fixed in cvs
Comment #4
(not verified) commentedComment #5
droopy75 commentedI got the same error, in the version of subscriptions-5.x-1.4.tar.gz I downloaded today (Feb 25th 2007). I'm glad it's "fixed in CVS", but when is this likely to make it into the full release?
Alternatively, just let me know the precise edit and I'll edit my own instance of line 389...
Comment #6
mindless commentedhopefully within a week of a bugfix release.
Comment #7
mindless commentedfunction subscriptions_comment_page($comment, $cid, $nid = null) {find the line like that.. adding the " = null" after $nid is the fix.