This repository was archived by the owner on Jan 30, 2020. It is now read-only.
zend-form 2.10.1
·
293 commits
to master
since this release
Added
- Nothing.
Deprecated
- Nothing.
Removed
- Nothing.
Fixed
- #134 fixes how the
FormElementManagerhandles invokable classes when theautoAddInvokableClassflag is enabled. Previously, it used the built-in utilities from zend-servicemanager, but now correctly uses its ownsetInvokableClass()method, which forces usage of theElementFactoryfor such classes, and thus ensures the name and options are passed to the element constructor. - #136 fixes how error messages are provided when an element uses a required
ArrayInput, but no values are submitted. Previously, no messages were returned; now they are. - #156 fixes how elements that act as
InputProviders are merged into parentCollectionInputFilters; previously, forms did not check if the element was in the target input filter composed in aCollectionInputFilter, leading to duplicate elements with varying behavior; now the inputs are correctly merged.