From 13dbde96f40f008f76cdf6629e7d0bb5ad2f7580 Mon Sep 17 00:00:00 2001 From: czaks Date: Mon, 23 Dec 2013 18:54:24 +0100 Subject: [PATCH] fix ajax.js errors workings --- inc/display.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/inc/display.php b/inc/display.php index 6f42cdf9..265fd5ef 100644 --- a/inc/display.php +++ b/inc/display.php @@ -86,7 +86,11 @@ function error($message, $priority = true, $debug_stuff = false) { } // Return the bad request header, necessary for AJAX posts - header($_SERVER['SERVER_PROTOCOL'] . ' 400 Bad Request'); + // czaks: is it really so? the ajax errors only work when this is commented out + // better yet use it when ajax is disabled + if (!isset ($_POST['json_response'])) { + header($_SERVER['SERVER_PROTOCOL'] . ' 400 Bad Request'); + } // Is there a reason to disable this? if (isset($_POST['json_response'])) {