Merge pull request #9016 from sminnee/partial-fix-4622

FIX: Better message when form action handler not found.
This commit is contained in:
Robbie Averill 2019-05-30 09:22:54 +12:00 committed by GitHub
commit a1f0d7a3bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -260,7 +260,7 @@ class FormRequestHandler extends RequestHandler
);
}
return $this->httpError(404);
return $this->httpError(404, "Could not find a suitable form-action callback function");
}
/**