From 7986905078b05d8afb2b50c6db746651b586fe12 Mon Sep 17 00:00:00 2001 From: 8chan Date: Tue, 10 Mar 2015 16:44:20 -0700 Subject: [PATCH] Send correct header, application/json not text/json --- settings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings.php b/settings.php index 8ed599df..0112ad9f 100644 --- a/settings.php +++ b/settings.php @@ -10,7 +10,7 @@ if (!openBoard($_GET['board'])) { error('No board.'); } -header('Content-Type: text/json'); +header('Content-Type: application/json'); $safe_config['title'] = $board['title']; $safe_config['subtitle'] = $board['subtitle']; $safe_config['indexed'] = ($board['indexed'] == "1");