]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Since ActivityContext::CONVERSATION changed to 'conversation' instead of 'ostatus...
authorMikael Nordfeldth <mmn@hethane.se>
Sat, 6 May 2017 13:25:44 +0000 (15:25 +0200)
committerMikael Nordfeldth <mmn@hethane.se>
Sat, 6 May 2017 13:27:25 +0000 (15:27 +0200)
the xmlstringerthinger doesn't really use namespaces afaik

lib/activity.php

index a52f29e9ca64e06bdf317f995f4c597acc20559b..daf9f4b22effd6ce53b237f6e09c90c2809e841a 100644 (file)
@@ -631,18 +631,18 @@ class Activity
                     $convattr['href'] = $conv->getUrl();
                     $convattr['local_id'] = $conv->getID();
                     $convattr['ref'] = $conv->getUri();
-                    $xs->element('link', array('rel' => ActivityContext::CONVERSATION,
+                    $xs->element('link', array('rel' => 'ostatus:'.ActivityContext::CONVERSATION,
                                                 'href' => $convattr['href']));
                 } else {
                     $convattr['ref'] = $this->context->conversation;
                 }
-                $xs->element(ActivityContext::CONVERSATION,
+                $xs->element('ostatus:'.ActivityContext::CONVERSATION,
                                 $convattr,
                                 $this->context->conversation);
                 /* Since we use XMLWriter we just use the previously hardcoded prefix for ostatus,
                     otherwise we should use something like this:
                 $xs->elementNS(array(ActivityContext::OSTATUS => 'ostatus'),    // namespace
-                                'conversation',  // tag (or the element name from ActivityContext::CONVERSATION)
+                                ActivityContext::CONVERSATION,
                                 null,   // attributes
                                 $this->context->conversation);  // content
                 */