mirror of
https://github.com/friendica/friendica
synced 2024-11-10 03:02:54 +00:00
use correct mime type for json
This commit is contained in:
parent
e0202d82a1
commit
85e227151b
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ function uexport_init(&$a) {
|
|||
|
||||
$output = array('user' => $user, 'contact' => $contact, 'profile' => $profile );
|
||||
|
||||
header("Content-type: text/json");
|
||||
header("Content-type: application/json");
|
||||
echo str_replace('\\/','/',json_encode($output));
|
||||
|
||||
$r = q("SELECT count(*) as `total` FROM `item` WHERE `uid` = %d ",
|
||||
|
|
Loading…
Reference in a new issue