More Code Standard

This commit is contained in:
Jonny Tischbein 2018-11-17 17:27:12 +01:00
parent 4f8e50d834
commit 590fbe8c6f
2 changed files with 4 additions and 5 deletions

View File

@ -27,9 +27,8 @@ function filerm_content(App $a)
Logger::log('filerm: tag ' . $term . ' item ' . $item_id . ' category ' . ($category ? 'true' : 'false')); Logger::log('filerm: tag ' . $term . ' item ' . $item_id . ' category ' . ($category ? 'true' : 'false'));
if ($item_id && strlen($term)) if ($item_id && strlen($term)) {
{ if (FileTag::unsaveFile(local_user(), $item_id, $term, $category)) {
if (FileTag::unsaveFile(local_user(), $item_id, $term, $category)){
info('Item removed'); info('Item removed');
} }
} }

View File

@ -394,7 +394,7 @@ function network_content(App $a, $update = 0, $parent = 0)
$o = networkThreadedView($a, $update, $parent); $o = networkThreadedView($a, $update, $parent);
} }
if ($o === ''){ if ($o === '') {
info("No items found"); info("No items found");
} }
@ -472,7 +472,7 @@ function networkFlatView(App $a, $update = 0)
} }
DBA::close($result); DBA::close($result);
if (count($posts) == 0){ if (count($posts) == 0) {
return ''; return '';
} }
$condition = ['uid' => local_user(), 'id' => $posts]; $condition = ['uid' => local_user(), 'id' => $posts];