From b2002d008787b65682cb0d6959a3865e5f13294b Mon Sep 17 00:00:00 2001 From: Mikael Roos Date: Wed, 20 Aug 2014 23:54:13 +0200 Subject: [PATCH] Now sends 404 header as it should #32 when providing a error page --- webroot/img.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webroot/img.php b/webroot/img.php index 4151f98..043af7a 100644 --- a/webroot/img.php +++ b/webroot/img.php @@ -14,7 +14,7 @@ */ function errorPage($msg) { - header("Status: 404 Not Found"); + header("HTTP/1.0 404 Not Found"); die('img.php say 404: ' . $msg); }