You are here

function content_add_more_submit_proxy in Content Construction Kit (CCK) 6.2

Same name and namespace in other branches
  1. 6.3 content.module \content_add_more_submit_proxy()

Proxy function to call content_add_more_submit(), because it might not be included yet when the form is processed and invokes the callback.

1 string reference to 'content_add_more_submit_proxy'
content_multiple_value_form in includes/content.node_form.inc
Special handling to create form elements for multiple values.

File

./content.module, line 476
Allows administrators to associate custom fields to content types.

Code

function content_add_more_submit_proxy($form, &$form_state) {
  module_load_include('inc', 'content', 'includes/content.node_form');
  content_add_more_submit($form, $form_state);
}