]> git.mxchange.org Git - friendica-addons.git/blobdiff - diaspora/diaspora.php
Use short form array syntax everywhere
[friendica-addons.git] / diaspora / diaspora.php
index d2e2961dc2c7a428eed7f12c165e9640a5df2d61..3c4a30d2f7f5c77d9db6a8b5f51041175a08dfbf 100644 (file)
@@ -275,18 +275,21 @@ function diaspora_send(&$a,&$b) {
 
        logger('diaspora_send: invoked');
 
-       if($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited']))
+       if($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited'])) {
                return;
+       }
 
-       if(! strstr($b['postopts'],'diaspora'))
+       if(! strstr($b['postopts'],'diaspora')) {
                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::selectOne('contact', ['id'], ['uid' => $b['uid'], 'self' => true]);
+       $self = dba::selectFirst('contact', ['id'], ['uid' => $b['uid'], 'self' => true]);
        if ($b['contact-id'] != $self['id']) {
                return;
        }
@@ -302,7 +305,7 @@ function diaspora_send(&$a,&$b) {
                logger('diaspora_send: all values seem to be okay', LOGGER_DEBUG);
 
                require_once('include/bb2diaspora.php');
-               $tag_arr = array();
+               $tag_arr = [];
                $tags = '';
                $x = preg_match_all('/\#\[(.*?)\](.*?)\[/',$b['tag'],$matches,PREG_SET_ORDER);
 
@@ -361,7 +364,7 @@ function diaspora_send(&$a,&$b) {
                        if (count($r))
                                $a->contact = $r[0]["id"];
 
-                       $s = serialize(array('url' => $url, 'item' => $b['id'], 'post' => $body));
+                       $s = serialize(['url' => $url, 'item' => $b['id'], 'post' => $body]);
                        require_once('include/queue_fn.php');
                        add_to_queue($a->contact,NETWORK_DIASPORA2,$s);
                        notice(t('Diaspora post failed. Queued for retry.').EOL);