The FormRow helper used to call the invoke() function of the FormLabel helper in earlier versions of zend-form (e.g. 2.7.0), but not anymore. I noticed this because we override the FormLabel helper with a new invoke function, which is now ignored.
I think this line of code here should be changed back to
The FormRow helper used to call the invoke() function of the FormLabel helper in earlier versions of zend-form (e.g. 2.7.0), but not anymore. I noticed this because we override the FormLabel helper with a new invoke function, which is now ignored.
I think this line of code here should be changed back to
As it used to be in zend-form 2.7.0. Otherwise, the __invoke() function of the FormLabel helper never gets called.
Or am I missing something here? Is there another way now to override the behavior of the FormLabel helper?