Skip to content

Commit

Permalink
Merge pull request #13123 from dugwood/patch-1
Browse files Browse the repository at this point in the history
Don't send dispatcher parameters
  • Loading branch information
sergeyklay committed Oct 21, 2017
2 parents a863577 + 907532f commit bf2f6d7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG-3.2.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# [3.2.4](https://github.com/phalcon/cphalcon/releases/tag/v3.2.4) (TBA)
- Fixed regression of [#13046](https://github.com/phalcon/cphalcon/issues/13046) by removing injection of dispatcher's parameters (which were never available anyway) [#13121](https://github.com/phalcon/cphalcon/issues/13121)

# [3.2.3](https://github.com/phalcon/cphalcon/releases/tag/v3.2.3) (2017-10-12)
- Fixed `Phalcon\Mvc\Model\Query::_executeSelect` threw RuntimeException, if db:beforeQuery() returned false
- Internal cookies property is now always an array [#12978](https://github.com/phalcon/cphalcon/issues/12978)
Expand Down
3 changes: 1 addition & 2 deletions phalcon/mvc/application.zep
Original file line number Diff line number Diff line change
Expand Up @@ -347,8 +347,7 @@ class Application extends BaseApplication
*/
view->render(
dispatcher->getControllerName(),
dispatcher->getActionName(),
dispatcher->getParams()
dispatcher->getActionName()
);
}
}
Expand Down

0 comments on commit bf2f6d7

Please sign in to comment.