diff --git a/lib/SimpleSAML/Error/Error.php b/lib/SimpleSAML/Error/Error.php index 4acb7c291d6ba8c92982c21f749b1dfbec3eb3c2..46edc480872f9a929eb2a840d075ea8c7e3faca4 100644 --- a/lib/SimpleSAML/Error/Error.php +++ b/lib/SimpleSAML/Error/Error.php @@ -223,8 +223,6 @@ class Error extends Exception */ public function show(): void { - $this->setHTTPCode(); - // log the error message $this->logError(); @@ -266,10 +264,12 @@ class Error extends Exception $show_function = $config->getArray('errors.show_function', null); if (isset($show_function)) { Assert::isCallable($show_function); + $this->setHTTPCode(); call_user_func($show_function, $config, $data); Assert::true(false); } else { $t = new Template($config, 'error.twig', 'errors'); + $t->setStatusCode($this->httpCode); $t->data = array_merge($t->data, $data); $t->send(); }