Navigation Menu

Skip to content

Commit

Permalink
Merge pull request #13004 from sergeyklay/3.2.x
Browse files Browse the repository at this point in the history
Fixed Dispatcher::dispatch to correct forward with the modified action suffix
  • Loading branch information
sergeyklay committed Aug 3, 2017
2 parents 04044ff + b727da1 commit cc2aff1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Expand Up @@ -2,7 +2,7 @@
- Fixed `Phalcon\Db\Adapter\Pdo\Postgresql::describeColumns` to work properly with `DOUBLE PRECISION` and `REAL` data types [#12842](https://github.com/phalcon/cphalcon/issues/12842)
- Fixed `Phalcon\Paginator\Adapter\QueryBuilder::getPaginate` to use the db connection service of the model [#12957](https://github.com/phalcon/cphalcon/issues/12957)
- Fixed `Phalcon\Paginator\Adapter\QueryBuilder::getPaginate` to escape reserverd words [#12950](https://github.com/phalcon/cphalcon/issues/12950)

- Fixed `Phalcon\Dispatcher::dispatch` to correct forward with the modified action suffix [#12988](https://github.com/phalcon/cphalcon/pull/12988)

# [3.2.1](https://github.com/phalcon/cphalcon/releases/tag/v3.2.1) (2017-07-10)
- Added `Phalcon\Db\Dialect\Mysql::getForeignKeyChecks` to generate a SQL to check the foreign key settings [#2604](https://github.com/phalcon/cphalcon/issues/2604), [phalcon/phalcon-devtools#556](https://github.com/phalcon/phalcon-devtools/issues/556)
Expand Down
2 changes: 1 addition & 1 deletion phalcon/dispatcher.zep
Expand Up @@ -538,7 +538,7 @@ abstract class Dispatcher implements DispatcherInterface, InjectionAwareInterfac
}

// Check if the method exists in the handler
let actionMethod = actionName . actionSuffix;
let actionMethod = this->getActiveMethod();

if !is_callable([handler, actionMethod]) {

Expand Down

0 comments on commit cc2aff1

Please sign in to comment.