X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModule%2FFeed.php;h=3a1246028b4224c0f306701b723a259d177c4c22;hb=1ae7cac23667a7e43a0ca5e66ad6fd58011542d0;hp=ff0abdb2ab31d997a2dde3b725629a9fddf5814a;hpb=2ec3a97393959e42d450e074271d2d622d25701f;p=friendica.git diff --git a/src/Module/Feed.php b/src/Module/Feed.php index ff0abdb2ab..3a1246028b 100644 --- a/src/Module/Feed.php +++ b/src/Module/Feed.php @@ -1,6 +1,6 @@ argc < 2) { - throw new \Friendica\Network\HTTPException\BadRequestException(); - } - $type = null; // @TODO: Replace with parameter from router - if ($a->argc > 2) { - $type = $a->argv[2]; + if (DI::args()->getArgc() > 2) { + $type = DI::args()->getArgv()[2]; } switch ($type) { @@ -72,10 +67,8 @@ class Feed extends BaseModule $type = 'posts'; } - // @TODO: Replace with parameter from router - $nickname = $a->argv[1]; header("Content-type: application/atom+xml; charset=utf-8"); - echo OStatus::feed($nickname, $last_update, 10, $type, $nocache, true); + echo ProtocolFeed::atom($this->parameters['nickname'], $last_update, 10, $type, $nocache, true); exit(); } }