X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModule%2FFeed.php;h=4c942cd762c1608a0a6a73c62d86e49ca0eaa763;hb=a20d05ba392e0b2f98b0d2d494d087216cf4d89d;hp=6470ab5c373b8c9e402e35c153dec0a4dac6d8e8;hpb=587953582273326dfa1ff744827897e1bf1208c9;p=friendica.git diff --git a/src/Module/Feed.php b/src/Module/Feed.php index 6470ab5c37..4c942cd762 100644 --- a/src/Module/Feed.php +++ b/src/Module/Feed.php @@ -1,6 +1,6 @@ getRequestValue($request, 'last_update', ''); + $nocache = !empty($request['nocache']) && local_user(); $type = null; // @TODO: Replace with parameter from router @@ -67,8 +67,11 @@ class Feed extends BaseModule $type = 'posts'; } - header("Content-type: application/atom+xml; charset=utf-8"); - echo ProtocolFeed::atom($this->parameters['nickname'], $last_update, 10, $type, $nocache, true); - exit(); + $feed = ProtocolFeed::atom($this->parameters['nickname'], $last_update, 10, $type, $nocache, true); + if (empty($feed)) { + throw new HTTPException\NotFoundException(DI::l10n()->t('User not found.')); + } + + System::httpExit($feed, Response::TYPE_ATOM); } }