X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=wppost%2Fwppost.php;h=96e95979d34ebc7e7f14aab68e71f39d60742312;hb=3e141d268e10a10e2c7a69782fdd6378f0804368;hp=ea26ae45340a7070de9e0d4fdb0bf772fecd96fb;hpb=f8d9efe8c7e57976acae3b1416220a7947ff94fc;p=friendica-addons.git diff --git a/wppost/wppost.php b/wppost/wppost.php index ea26ae45..96e95979 100644 --- a/wppost/wppost.php +++ b/wppost/wppost.php @@ -191,18 +191,21 @@ function wppost_post_local(&$a, &$b) { function wppost_send(&$a,&$b) { - if($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited'])) + if($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited'])) { return; + } - if(! strstr($b['postopts'],'wppost')) + if(! strstr($b['postopts'],'wppost')) { return; + } - if($b['parent'] != $b['id']) + 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)); + $self = dba::selectOne('contact', ['id'], ['uid' => $b['uid'], 'self' => true]); if ($b['contact-id'] != $self['id']) { return; }