From: Mikael Nordfeldth Date: Thu, 1 May 2014 13:47:51 +0000 (+0200) Subject: Conversations now have URIs that are not URLs X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=9a5e1423f139be474464d3caf0945c8c736831f5;p=quix0rs-gnu-social.git Conversations now have URIs that are not URLs --- diff --git a/classes/Conversation.php b/classes/Conversation.php index 033b99384b..faca20f9c6 100755 --- a/classes/Conversation.php +++ b/classes/Conversation.php @@ -56,7 +56,10 @@ class Conversation extends Managed_DataObject } /** - * Factory method for creating a new conversation + * Factory method for creating a new conversation. + * + * Use this for locally initiated conversations. Remote notices should + * preferrably supply their own conversation URIs in the OStatus feed. * * @return Conversation the new conversation DO */ @@ -68,7 +71,10 @@ class Conversation extends Managed_DataObject $conv = new Conversation(); $conv->created = common_sql_now(); $conv->id = $notice->id; - $conv->uri = common_local_url('conversation', array('id' => $notice->id), null, null, false); + $conv->uri = sprintf('%s%s=%d:%s=%s', + TagURI::mint(), + 'noticeId', $notice->id, + 'objectType', 'thread'); $result = $conv->insert(); if ($result === false) {