]> git.mxchange.org Git - friendica.git/blobdiff - mod/subthread.php
Merge remote-tracking branch 'upstream/develop' into issue-3326
[friendica.git] / mod / subthread.php
index b85f461dcf85c291ba939a434648eb68b7bd52b7..646a4230c5f486819100624ddf754231b52814d1 100644 (file)
@@ -7,7 +7,7 @@ require_once('include/items.php');
 
 function subthread_content(App $a) {
 
-       if (! local_user() && ! remote_user()) {
+       if(! local_user() && ! remote_user()) {
                return;
        }
 
@@ -20,7 +20,7 @@ function subthread_content(App $a) {
                dbesc($item_id)
        );
 
-       if (! $item_id || (! dbm::is_result($r))) {
+       if(! $item_id || (! dbm::is_result($r))) {
                logger('subthread: no item ' . $item_id);
                return;
        }
@@ -29,13 +29,13 @@ function subthread_content(App $a) {
 
        $owner_uid = $item['uid'];
 
-       if (! can_write_wall($a,$owner_uid)) {
+       if(! can_write_wall($a,$owner_uid)) {
                return;
        }
 
        $remote_owner = null;
 
-       if (! $item['wall']) {
+       if(! $item['wall']) {
                // The top level post may have been written by somebody on another system
                $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
                        intval($item['contact-id']),