Simplenews 6.x-2.x hook_user adds #submit element for user_profile_form
$form['#submit'][] = 'simplenews_subscriptions_account_form_submit';
And in some way it breaks submittion of all form.
for now I just commented this part of code in function onepageprofile_user:
// Other modules
/*if (module_exists('simplenews')) {
$simplenews_form = simplenews_user('form', $edit, $account, 'newsletter');
if (is_array($simplenews_form)) {
$form += $simplenews_form;
}
}*/
Comments
Comment #1
pacufist commentedFixed in own module. Just need to add missed default submit function.
Comment #2
neurovation.kiwi commentedThis one is a duplicate of http://drupal.org/node/895568
or vice versa ;)
Comment #3
aidanlis commentedComment #4
neurovation.kiwi commentedHi aidanlis!
seems u used that fix, but it has a problem.
sometimes $form['#submit'] is not an array, and then array_search triggers an PHP -Error, which is kind of annoying. (it doesn't do any harm except filling up the watchdog-table).
so please change the line #105 from
to
thx
kiwi