Avoid "Cannot modify header information - headers already sent"

This commit is contained in:
Michael 2018-11-13 20:20:54 +00:00
parent f8eb38b275
commit 83ae873646
1 changed files with 1 additions and 1 deletions

View File

@ -59,8 +59,8 @@ function profile_init(App $a)
$user = DBA::selectFirst('user', ['uid'], ['nickname' => $which]);
if (DBA::isResult($user)) {
$data = ActivityPub\Transmitter::getProfile($user['uid']);
echo json_encode($data);
header('Content-Type: application/activity+json');
echo json_encode($data);
exit();
}
}