Minor code relocation

https://github.com/friendica/friendica/pull/6144/files#r234385033
This commit is contained in:
Alexandre Alapetite 2018-11-17 01:36:54 +01:00
parent d85e26d314
commit bd19e93c09
1 changed files with 4 additions and 3 deletions

View File

@ -1299,6 +1299,10 @@ class OStatus
break;
}
if (!$feed_mode) {
$selfUri = "/dfrn_poll/" . $owner["nick"];
}
$attributes = ["uri" => "https://friendi.ca", "version" => FRIENDICA_VERSION . "-" . DB_UPDATE_VERSION];
XML::addElement($doc, $root, "generator", FRIENDICA_PLATFORM, $attributes);
XML::addElement($doc, $root, "id", System::baseUrl() . "/profile/" . $owner["nick"]);
@ -1330,9 +1334,6 @@ class OStatus
$attributes = ["href" => System::baseUrl() . "/salmon/" . $owner["nick"], "rel" => "http://salmon-protocol.org/ns/salmon-mention"];
XML::addElement($doc, $root, "link", "", $attributes);
if (!$feed_mode) {
$selfUri = "/dfrn_poll/" . $owner["nick"];
}
$attributes = ["href" => System::baseUrl() . $selfUri, "rel" => "self", "type" => "application/atom+xml"];
XML::addElement($doc, $root, "link", "", $attributes);