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

Commit a0f21c0

Browse files
committed
Merge branch 'hotfix/72'
Close #74 Fixes #72
2 parents 196ec0f + 912d9aa commit a0f21c0

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
@@ -2,7 +2,7 @@
22

33
All notable changes to this project will be documented in this file, in reverse chronological order by release.
44

5-
## 2.6.3 - TBD
5+
## 2.6.3 - 2016-02-23
66

77
### Added
88

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

1919
### Fixed
2020

21-
- Nothing.
21+
- [#74](https://github.com/zendframework/zend-mvc/pull/74) fixes the
22+
`FormAnnotationBuilderFactory`'s usage of the
23+
`FormElementManager::injectFactory()` method to ensure it works correctly on
24+
all versions.
2225

2326
## 2.6.2 - 2016-02-22
2427

src/Service/FormAnnotationBuilderFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public function createService(ServiceLocatorInterface $serviceLocator)
2929
//setup a form factory which can use custom form elements
3030
$annotationBuilder = new AnnotationBuilder();
3131
$formElementManager = $serviceLocator->get('FormElementManager');
32-
$formElementManager->injectFactory($annotationBuilder);
32+
$formElementManager->injectFactory($annotationBuilder, $serviceLocator);
3333

3434
$config = $serviceLocator->get('Config');
3535
if (isset($config['form_annotation_builder'])) {

0 commit comments

Comments
 (0)