]> git.mxchange.org Git - friendica.git/commitdiff
More Code Standard
authorJonny Tischbein <jonny_tischbein@systemli.org>
Sat, 17 Nov 2018 16:27:12 +0000 (17:27 +0100)
committerJonny Tischbein <jonny_tischbein@systemli.org>
Sat, 17 Nov 2018 16:27:12 +0000 (17:27 +0100)
mod/filerm.php
mod/network.php

index d8da0e125511fdcc240b9547acdbcc7c72dcd056..30a7f69df9a9e925468d18cd3e0e1ad70d61c5a6 100644 (file)
@@ -27,9 +27,8 @@ function filerm_content(App $a)
 
        Logger::log('filerm: tag ' . $term . ' item ' . $item_id  . ' category ' . ($category ? 'true' :  'false'));
 
-       if ($item_id && strlen($term))
-       {
-               if (FileTag::unsaveFile(local_user(), $item_id, $term, $category)){
+       if ($item_id && strlen($term)) {
+               if (FileTag::unsaveFile(local_user(), $item_id, $term, $category)) {
                        info('Item removed');
                }
        }
index 1e744bd259fc040d53bb2677170691e2bfa6d68f..ba02ee5cc326dbf8dd88cf0a3b2a312f34f21b77 100644 (file)
@@ -394,7 +394,7 @@ function network_content(App $a, $update = 0, $parent = 0)
                $o = networkThreadedView($a, $update, $parent);
        }
 
-       if ($o === ''){
+       if ($o === '') {
                info("No items found");
        }
 
@@ -472,7 +472,7 @@ function networkFlatView(App $a, $update = 0)
                }
                DBA::close($result);
 
-               if (count($posts) == 0){
+               if (count($posts) == 0) {
                        return '';
                }
                $condition = ['uid' => local_user(), 'id' => $posts];