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

stg11’s picture

Status: Active » Closed (fixed)

If all else fails, read the directions -- I just realized the Signup module has to be 2.4 or higher -- I was using 1.0

zooney’s picture

Version: 5.x-1.0 » 5.x-1.1
Priority: Normal » Critical
Status: Closed (fixed) » Active

I'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.

mau’s picture

Subscribe.

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.

shino’s picture

Category: support » bug

I 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.

shino’s picture

Find 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)

HallSL’s picture

Same issue here. I guess I'll try the workaround on #5, though I'd like to understand it better. Any hopes of a fix?

HallSL’s picture

Workaround works and module functions properly afterwards. I think this is the proper solution.