]> git.mxchange.org Git - friendica.git/commitdiff
Minor code relocation
authorAlexandre Alapetite <alexandre@alapetite.fr>
Sat, 17 Nov 2018 00:36:54 +0000 (01:36 +0100)
committerAlexandre Alapetite <alexandre@alapetite.fr>
Sat, 17 Nov 2018 00:36:54 +0000 (01:36 +0100)
https://github.com/friendica/friendica/pull/6144/files#r234385033

src/Protocol/OStatus.php

index 0ea6512d1d026a41b69fe61ea3ce1077b208262d..a6a5d061c3a8a402a9e2e4bb098af137730451af 100644 (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);