I'm trying to figure out why following submit callback doesn't call after content submit:
$form['#submit'][] = 'auto_nodetitle_node_form_submit';
I've created content type (using cck) and set up as content profile during registration (content_profile_registration.module).
When I'm login in as super admin, I'm going to page, on which I fill profile form (user form + node form).
After submit, node doesn't have auto generated title. I check, but $form['#submit'] is not overwritten anywhere.
Any ideas?
Comments
Comment #1
kenorb commentedTemporary solution is explained here:
http://drupal.org/node/322566
Comment #2
kenorb commentedOk, I found the solution.
I'd workflow set for redirection to another page and node_access_acquire_grants() function wan't executed.