Active
Project:
Signup Status
Version:
5.x-1.1
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
25 May 2008 at 20:58 UTC
Updated:
1 Jun 2009 at 16:59 UTC
When I click the tab Signups I get this:
warning: array_merge() [function.array-merge]: Argument #2 is not an array in /home/.../sites/all/modules/signup/signup.module on line 666.
When I try to change status from closed to open or open to closed I get this error.
Fatal error: Call to undefined function signup_admin_node_form_submit() in /home/.../sites/all/modules/signup_status/signup_status.module on line 404
I tried disabling sub-modules, same thing but when I disable Signup Status module itself errors go away. Also same results with latest dev version of signup status.
Any ideas what I might be doing wrong?
Currently running PHP 5.2.6 and MySql 5.0.45 Drupal 5.7
Comments
Comment #1
stg11 commentedIf all else fails, read the directions -- I just realized the Signup module has to be 2.4 or higher -- I was using 1.0
Comment #2
zooney commentedI'm using Signup 2.7 and Signup Status 1.1 and get a similar issue.
I get:
Fatal error: Call to undefined function signup_admin_node_form_submit() in C:\[path to signup module]\signup_status.module on line 404
When hitting the "update" button under Signup Summary->Registration Status under the Signups tab on a node.
Comment #3
mau commentedSubscribe.
Signup 5.x-2.7 and Signup Status 5.x-1.1 on XAMPP.
Fatal error: Call to undefined function signup_admin_node_form_submit() in C:\xampp\htdocs\[...]\modules\signup_status\signup_status.module on line 404
When trying to re-open a closed signup.
Comment #4
shino commentedI get same error as well when i try to close a sign up that is open by clicking on "update" button under node/#/signups summary and details.
Fatal error: Call to undefined function signup_admin_node_form_submit() in modules/signup_status/signup_status.module on line 404
I'm using
Sign up: 5.x-2.7
Sign up status: 5.x-1.1
Any fix/patch will be appreciated.
Comment #5
shino commentedFind temporary fix for this. This is not ideal, but needed something to get the project moving. So...
I've replaced line 404 function call of
signup_admin_node_form_submit($form_id, $form_values)
to
signup_node_admin_summary_form_submit($form_id, $form_values)
Comment #6
HallSL commentedSame issue here. I guess I'll try the workaround on #5, though I'd like to understand it better. Any hopes of a fix?
Comment #7
HallSL commentedWorkaround works and module functions properly afterwards. I think this is the proper solution.