Merge pull request #8270 from sminnee/fix-afterCallActionHandler

FIX: Correct afterCallActionHandler arguments to match SS4.
This commit is contained in:
Ingo Schommer 2018-07-18 23:13:24 +12:00 committed by GitHub
commit a6cab8850d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -295,7 +295,7 @@ class RequestHandler extends ViewableData {
$actionRes = $this->$action($request);
$res = $this->extend('afterCallActionHandler', $request, $action);
$res = $this->extend('afterCallActionHandler', $request, $action, $actionRes);
if ($res) return reset($res);
return $actionRes;