]> git.p6c8.net - jirafeau_project.git/commitdiff
[BUGFIX] API: Set content type to plain text
authorDan Untenzu <untenzu@webit.de>
Mon, 16 Jan 2017 11:00:39 +0000 (12:00 +0100)
committerJerome Jutteau <j.jutteau@gmail.com>
Thu, 19 Jan 2017 18:53:35 +0000 (18:53 +0000)
Setting the content type to text only will
make some browsers to ignore the utf8 charset.

Set the default content type to "plain text"
to deliver UTF8 and avoid errors while generating
a bash script with special characters.

script.php

index 3905d2f4e16a963aa13fd612f991c3f41c711d7c..33b8edf8d828677caac1a6321ca45148d36e36a1 100644 (file)
@@ -64,7 +64,7 @@ if ($_SERVER['REQUEST_METHOD'] == "GET" && count ($_GET) == 0)
 }
 
 /* Lets use interface now. */
-header('Content-Type: text; charset=utf-8');
+header('Content-Type: text/plain; charset=utf-8');
 
 check_errors ($cfg);
 if (has_error ())

patrick-canterino.de