From 17da5f45be95420139ce94adf6e76db8dd5d9c99 Mon Sep 17 00:00:00 2001 From: Sarah Hoffmann Date: Wed, 16 Mar 2022 21:44:02 +0100 Subject: [PATCH] fix return code for PHP exceptions These have returned a 0 until now. --- lib-php/init-website.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib-php/init-website.php b/lib-php/init-website.php index 770c245d..60367503 100644 --- a/lib-php/init-website.php +++ b/lib-php/init-website.php @@ -26,7 +26,7 @@ function userError($sMsg) function exception_handler_json($exception) { - http_response_code($exception->getCode()); + http_response_code($exception->getCode() == 0 ? 500 : $exception->getCode()); header('Content-type: application/json; charset=utf-8'); include(CONST_LibDir.'/template/error-json.php'); exit(); @@ -34,7 +34,7 @@ function exception_handler_json($exception) function exception_handler_xml($exception) { - http_response_code($exception->getCode()); + http_response_code($exception->getCode() == 0 ? 500 : $exception->getCode()); header('Content-type: text/xml; charset=utf-8'); echo ''."\n"; include(CONST_LibDir.'/template/error-xml.php'); -- 2.39.5