]> git.mxchange.org Git - friendica-addons.git/blobdiff - wppost/wppost.php
Fix formatting
[friendica-addons.git] / wppost / wppost.php
index ea26ae45340a7070de9e0d4fdb0bf772fecd96fb..96e95979d34ebc7e7f14aab68e71f39d60742312 100644 (file)
@@ -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;
        }