]> git.mxchange.org Git - friendica.git/commitdiff
fix leak
authorZach Prezkuta <fermion@gmx.com>
Sat, 12 Jan 2013 13:56:45 +0000 (06:56 -0700)
committerZach Prezkuta <fermion@gmx.com>
Sat, 12 Jan 2013 13:56:45 +0000 (06:56 -0700)
include/diaspora.php

index 4b81efef8172faac9bed6384f5924be1770d4bc9..18d37c243e212a992419f2de80a0dd09a54f096e 100755 (executable)
@@ -2206,7 +2206,7 @@ function diaspora_send_status($item,$owner,$contact,$public_batch = false) {
        $images = array();
 
        $title = $item['title'];
-       $body = fix_private_photos($item['body'], $owner['uid'], $item, $contact['id']);
+       $body = $item['body'];
 
 /*
        // We're trying to match Diaspora's split message/photo protocol but
@@ -2328,7 +2328,9 @@ function diaspora_send_followup($item,$owner,$contact,$public_batch = false) {
        $myaddr = $owner['nickname'] . '@' .  substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
 //     $theiraddr = $contact['addr'];
 
-       // Diaspora doesn't support threaded comments
+       // Diaspora doesn't support threaded comments, but some
+       // versions of Diaspora (i.e. Diaspora-pistos) support
+       // likes on comments
        if($item['verb'] === ACTIVITY_LIKE && $item['thr-parent']) {
                $p = q("select guid, type, uri, `parent-uri` from item where uri = '%s' limit 1",
                        dbesc($item['thr-parent'])
@@ -2404,7 +2406,9 @@ function diaspora_send_relay($item,$owner,$contact,$public_batch = false) {
        $body = $item['body'];
        $text = html_entity_decode(bb2diaspora($body));
 
-       // Diaspora doesn't support threaded comments
+       // Diaspora doesn't support threaded comments, but some
+       // versions of Diaspora (i.e. Diaspora-pistos) support
+       // likes on comments
        if($item['verb'] === ACTIVITY_LIKE && $item['thr-parent']) {
                $p = q("select guid, type, uri, `parent-uri` from item where uri = '%s' limit 1",
                        dbesc($item['thr-parent'])