Fix View:txt and add charset.

This commit is contained in:
kj 2022-11-22 00:59:20 -04:00
parent 404bd59569
commit 7d3d1615d5
1 changed files with 3 additions and 3 deletions

View File

@ -54,7 +54,7 @@ class View extends Neuron {
* @param object $data
*/
public function json(object $data) {
header('Content-Type: application/json');
header('Content-Type: application/json; charset=utf-8');
print(json_encode($data));
}
@ -64,8 +64,8 @@ class View extends Neuron {
* @param string $txt
*/
public function text(string $txt) {
header('Content-Type: text/plain');
print(json_encode($txt));
header('Content-Type: text/plain; charset=utf-8');
print($txt);
}
}
?>