Some changes for better code quality

This commit is contained in:
Michael 2018-09-30 07:21:57 +00:00
parent b043c7e0f2
commit 82987d018a
7 changed files with 17 additions and 23 deletions

View file

@ -29,10 +29,10 @@ class Outbox extends BaseModule
$page = defaults($_REQUEST, 'page', null);
$Outbox = ActivityPub::getOutbox($owner, $page);
$outbox = ActivityPub::getOutbox($owner, $page);
header('Content-Type: application/activity+json');
echo json_encode($Outbox);
echo json_encode($outbox);
exit();
}
}