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

Commit

Permalink
Merge branch 'hotfix/12'
Browse files Browse the repository at this point in the history
Close #12
  • Loading branch information
weierophinney committed Oct 11, 2016
2 parents 4380c36 + 7c21de3 commit f08db1e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ All notable changes to this project will be documented in this file, in reverse

- [#11](https://github.com/zfcampus/zf-rpc/pull/11) fixes a typo in an import
statement.
- [#12](https://github.com/zfcampus/zf-rpc/pull/12) fixes registration of the
`ViewJsonFactory`, ensuring it registers at its original priority of 100.

## 1.3.0 - 2016-07-12

Expand Down
2 changes: 1 addition & 1 deletion src/Module.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ public function onBootstrap($e)
// Setup json strategy
$strategy = $services->get('ViewJsonStrategy');
$view = $services->get('ViewManager')->getView();
$strategy->attach($view->getEventManager());
$strategy->attach($view->getEventManager(), 100);
}
}

0 comments on commit f08db1e

Please sign in to comment.