Hello,
I am having two form submit buttons on a single page, somethings like this:
$form['submit1'] = array(
'#type' => 'submit',
'#value' => t('save'),
'#submit' => array('test_submit1'),
);
[some more for elements in between]
$form['submit2'] = array(
'#type' => 'submit',
'#value' => t('Save'),
'#submit' => array('test_submit2'),
);
Now, whether I click on any of them, the submit callback of second button is called always. But if I change the value of second button or give them different '#name', everything gets back in place. They call their submit functions respectively.
I did not expect such a behavior given this:
Although, they both have same #value but will have different ids in the form, so Drupal has every reason to differentiate between them (or not??). Why is such thing happening? Am I missing something?