You are here

function signup_form_cancel_submit in Signup 5

Same name and namespace in other branches
  1. 5.2 signup.module \signup_form_cancel_submit()

Submits the cancel signup form

Parameters

$form_id The ID of the form being submitted.:

$form_values The constructed form values array of the submitted form.:

Related topics

File

./signup.module, line 405

Code

function signup_form_cancel_submit($form_id, $form_values) {
  signup_cancel_signup($form_values['uid'], $form_values['nid'], $form_values['signup_anon_mail']);
}