|
|
@ -61,8 +61,10 @@ class OC_JSON{ |
|
|
|
/** |
|
|
|
/** |
|
|
|
* Encode and print $data in json format |
|
|
|
* Encode and print $data in json format |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public static function encodedPrint($data){ |
|
|
|
public static function encodedPrint($data,$setContentType=true){ |
|
|
|
|
|
|
|
if($setContentType){ |
|
|
|
self::setContentTypeHeader(); |
|
|
|
self::setContentTypeHeader(); |
|
|
|
|
|
|
|
} |
|
|
|
echo json_encode($data); |
|
|
|
echo json_encode($data); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|