Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG-5.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@

### Removed

## [5.4.1](https://github.com/phalcon/cphalcon/releases/tag/v5.4.1) (2025-09-XX)

### Fixed

- Fixed `Phalcon\Mvc\Micro\LazyLoader::callMethod` to prevent `Unknown named parameter` error [#16724](https://github.com/phalcon/cphalcon/issues/16797)
- Fixed `Phalcon\Dispatcher\AbstractDispatcher` when calling action methods that do not define parameters to prevent `Unknown named parameter` error.

## [5.4.0](https://github.com/phalcon/cphalcon/releases/tag/v5.4.0) (2023-10-25)

### Changed
Expand Down
2 changes: 1 addition & 1 deletion phalcon/Dispatcher/AbstractDispatcher.zep
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ abstract class AbstractDispatcher extends AbstractInjectionAware implements Disp
{
return call_user_func_array(
[handler, actionMethod],
params
array_values(params)
);
}

Expand Down
2 changes: 1 addition & 1 deletion phalcon/Mvc/Micro/LazyLoader.zep
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class LazyLoader
*/
return call_user_func_array(
[handler, method],
arguments
array_values(arguments)
);
}

Expand Down