[ticket/10328] Added capital to "Content-type" in phpbb_json_response.

It was originally Content-type, but has been replaced with Content-Type,
which is correct.

PHPBB3-10328
This commit is contained in:
Callum Macrae 2011-09-24 16:35:46 +01:00 committed by Igor Wiedler
parent 8c0e72cd9e
commit dbb81fbd2b

View file

@ -30,7 +30,7 @@ class phpbb_json_response
*/
public function send($data, $exit = true)
{
header('Content-type: application/json');
header('Content-Type: application/json');
echo json_encode($data);
if ($exit)