use utf-8 encoding for json

This commit is contained in:
Bernhard Posselt 2013-04-25 11:36:41 +02:00
parent a0df5903b0
commit c9c1e483c5
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ class OC_JSON{
public static function setContentTypeHeader($type='application/json') {
if (!self::$send_content_type_header) {
// We send json data
header( 'Content-Type: '.$type );
header( 'Content-Type: '.$type . '; charset=utf-8');
self::$send_content_type_header = true;
}
}