X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/c3ddc7579a6f2a855cfb8adefbb16e8f3213ba92..ebe489c22702a9b5d8116b725c1fcb7fbe839c2d:/lib-php/init-website.php?ds=sidebyside diff --git a/lib-php/init-website.php b/lib-php/init-website.php index 6f3b5545..60367503 100644 --- a/lib-php/init-website.php +++ b/lib-php/init-website.php @@ -1,4 +1,12 @@ 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(); @@ -26,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');