From ac502407276548dd14facdfc6517db9fd0c71d5f Mon Sep 17 00:00:00 2001
From: Tim van Dijen <tim.dijen@minbzk.nl>
Date: Sat, 21 Mar 2020 17:40:09 +0100
Subject: [PATCH] Set HTTP status code on response

---
 lib/SimpleSAML/Error/Error.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/SimpleSAML/Error/Error.php b/lib/SimpleSAML/Error/Error.php
index 4acb7c291..46edc4808 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();
         }
-- 
GitLab