Publiv forum posts aren't transmitted via the connectors anymore
[friendica-addons.git] / libertree / libertree.php
index 0ff512cf232febc9e67e0b3b5fc1984f6130b806..95def07a0b01dfd5dd0119bc74cf0e5f671f7ebf 100755 (executable)
@@ -155,15 +155,21 @@ function libertree_send(&$a,&$b) {
 
        logger('libertree_send: invoked');
 
-    if($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited']))
-        return;
+       if ($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited']))
+               return;
 
-    if(! strstr($b['postopts'],'libertree'))
-        return;
+       if (! strstr($b['postopts'],'libertree'))
+               return;
 
-    if($b['parent'] != $b['id'])
-        return;
+       if ($b['parent'] != $b['id'])
+               return;
 
+       // Dont't post if the post doesn't belong to us.
+       // This is a check for forum postings
+       $self = dba::select('contact', array('id'), array('uid' => $b['uid'], 'self' => true), array('limit' => 1));
+       if ($b['contact-id'] != $self['id']) {
+               return;
+       }
 
        $ltree_api_token = PConfig::get($b['uid'],'libertree','libertree_api_token');
        $ltree_url = PConfig::get($b['uid'],'libertree','libertree_url');