Closed (fixed)
Project:
RSVP
Version:
6.x-2.0-rc4
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
30 Nov 2009 at 22:33 UTC
Updated:
15 Mar 2010 at 23:20 UTC
There are several references to a function named rsvp_function_add_invitees(), but that function does not exist.
E.g.
.../sites/all/modules/rsvp$ grep -r "rsvp_function_add_invitees" *
modules/og/rsvp_og.module: rsvp_function_add_invitees($rsvp, $invite, $guestsarray, $send_rsvp);
modules/roles/rsvp_roles.module: rsvp_function_add_invitees($rsvp, $invite, $guestsarray, $send_rsvp);
modules/user_relationships/rsvp_user_relationships.module: rsvp_function_add_invitees($rsvp, $invite, $guestsarray, $send_rsvp);
modules/friendlist/rsvp_friendlist.module: rsvp_function_add_invitees($rsvp, $invite, $guestsarray, $send_rsvp);
modules/civicrm/rsvp_civicrm.module: rsvp_function_add_invitees($rsvp, $invite, $guestsarray, $send_rsvp);
modules/simplenews/rsvp_simplenews.module: rsvp_function_add_invitees($rsvp, $invite, $guestsarray, $send_rsvp);
modules/buddylist2/rsvp_buddylist2.module: rsvp_function_add_invitees($rsvp, $invite, $guestsarray, $send_rsvp);
rsvp.api.inc: rsvp_function_add_invitees($rsvp, $invite, $guestsarray, $send_rsvp, $is_moderator);
Should these references instead be to the function rsvp_function_add_guests? That one does exist in the file rsvp.functions.inc.
Comments
Comment #1
ulf1 commentedThat has been addressed for a while now, Please use the latest dev version instead.
Thanks,
Ulf
Comment #3
westbywest commentedThis issue still exists in the 6.x-2.0-rc4 version of the module, which was presumably derived from the dev version at the time of your comment, and then published as a release candidate.
Is there an issue # which you could refer to show how this has been addressed?
This the actual error I observe when trying to submit a node that has a datetime CCK field associated with rsvp via the dateconnector:
My fix is to change line 182 of rsvp.api.inc from this:
... to this:
... but I have not tested this for completeness. (I.e. it works for me, but may not for others' applications.)
Besides that, it's not practical for me to use the dev version of this module.
Comment #4
ulf1 commentedHm,
I am not sure what I have seen or fixed, but it was not what you reported, therefore my apologies. I have fixed the code now and it will be available with the next dev version.
What this tells me at least is that you seem to be the only that is using the rsvp api functions at the moment. ;-(
RSVP is currently in the status of build stabilization and only bug fixes will go into the dev stream. If it is stable for a while I will create a new RC candidate, so you do not have to worry about using the dev stream. It is absolutely ok to use it (at least for the rsvp project).
~
Ulf
Comment #5
westbywest commentedThanks for the response. You are correct that I am using the RSVP api functions.
My project requires we use fixed versions of modules, rather than the fluid, timestamp-based versioning in dev modules, to ease management of the codebase.
A single line fix is acceptable overhead for me to continue using the rc4 version of the module, as this version has now been verified in my application. I will keep an an eye out for the next release candidate.