diff options
author | Friendika <info@friendika.com> | 2011-04-05 23:06:03 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-04-05 23:06:03 -0700 |
commit | ded449f69747856e5a875784544387b2e06054b6 (patch) | |
tree | 8481e69c547f7397e6bfa62c4f63910cddf9a36a /mod/contacts.php | |
parent | d2b28206ceb093f908f131980f9a02adbce327d2 (diff) | |
download | volse-hubzilla-ded449f69747856e5a875784544387b2e06054b6.tar.gz volse-hubzilla-ded449f69747856e5a875784544387b2e06054b6.tar.bz2 volse-hubzilla-ded449f69747856e5a875784544387b2e06054b6.zip |
ostatus doesn't accept activitystreams stop-follow verb or multiple verbs, insists on single ostatus unfollow #non-standard
Diffstat (limited to 'mod/contacts.php')
-rw-r--r-- | mod/contacts.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/contacts.php b/mod/contacts.php index aee6548fe..4d5311b69 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -180,8 +180,8 @@ function contacts_content(&$a) { '$type' => 'text', '$content' => t('stopped following'), '$nick' => $a->user['nickname'], - '$verb' => ACTIVITY_UNFOLLOW, - '$ostat_follow' => '<as:verb>http://ostatus.org/schema/1.0/unfollow</as:verb>' . "\r\n" + '$verb' => 'http://ostatus.org/schema/1.0/unfollow', // ACTIVITY_UNFOLLOW, + '$ostat_follow' => '' // '<as:verb>http://ostatus.org/schema/1.0/unfollow</as:verb>' . "\r\n" )); if((x($orig_record[0],'notify')) && (strlen($orig_record[0]['notify']))) { |