zendframework / zend-form

Form component from Zend Framework
BSD 3-Clause "New" or "Revised" License
69 stars 87 forks source link

Error binding with validation group setted #124

Open guilherme-santos opened 8 years ago

guilherme-santos commented 8 years ago

Version 2.6.2 broke for me... In this line https://github.com/zendframework/zend-form/blob/master/src/Form.php#L365 you're looking for $validationGroup[<field>], but I'm using setValidationGroup(field1, field2, field3) or even setValidationGroup(array(field1, field2, field3)), in this case array will be as above:

array(
    0 => 'field1",
    1 => 'field2",
    2 => 'field3",
)

And this will broke the code!

weierophinney commented 4 years ago

This repository has been closed and moved to laminas/laminas-form; a new issue has been opened at https://github.com/laminas/laminas-form/issues/23.