Skip to content
This repository was archived by the owner on Jan 29, 2020. It is now read-only.

Commit 6508785

Browse files
committed
Merge branch 'hotfix/72' into develop
Forward port #74
2 parents 01e47b9 + 912d9aa commit 6508785

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ All notable changes to this project will be documented in this file, in reverse
9191
factories by default. You can force it to do so by passing an optional
9292
second argument, a boolean flag, with a value of boolean true.
9393

94-
## 2.6.3 - TBD
94+
## 2.6.3 - 2016-02-23
9595

9696
### Added
9797

@@ -107,7 +107,10 @@ All notable changes to this project will be documented in this file, in reverse
107107

108108
### Fixed
109109

110-
- Nothing.
110+
- [#74](https://github.com/zendframework/zend-mvc/pull/74) fixes the
111+
`FormAnnotationBuilderFactory`'s usage of the
112+
`FormElementManager::injectFactory()` method to ensure it works correctly on
113+
all versions.
111114

112115
## 2.6.2 - 2016-02-22
113116

src/Service/FormAnnotationBuilderFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public function __invoke(ContainerInterface $container, $name, array $options =
3434
$annotationBuilder->setEventManager($ventManager);
3535

3636
$formElementManager = $container->get('FormElementManager');
37-
$formElementManager->injectFactory($annotationBuilder);
37+
$formElementManager->injectFactory($container, $annotationBuilder);
3838

3939
$config = $container->get('config');
4040
if (isset($config['form_annotation_builder'])) {

0 commit comments

Comments
 (0)