]> git.mxchange.org Git - friendica.git/commitdiff
Code Standards: var name, spaces, array_push short form
authorJonny Tischbein <jonny_tischbein@systemli.org>
Thu, 25 Oct 2018 22:18:47 +0000 (00:18 +0200)
committerJonny Tischbein <jonny_tischbein@systemli.org>
Thu, 25 Oct 2018 22:18:47 +0000 (00:18 +0200)
mod/photos.php
mod/tagrm.php

index d50dc6fec81c6451cfa16ff6185ba5107fa3ee34..b80350221bf4cdc93336714fc66b47661ef8d3e5 100644 (file)
@@ -1419,13 +1419,15 @@ function photos_content(App $a)
                        // parse tags and add links
                        $tag_arr = [];
                        foreach ($arr as $tag) {
-                               array_push($tag_arr, ['name' => BBCode::convert($tag), 
-                                       'removeurl' => '/tagrm/'.$link_item['id'] . '/' . bin2hex($tag)]);
+                               $tag_arr[] = [
+                                       'name' => BBCode::convert($tag),
+                                       'removeurl' => '/tagrm/'.$link_item['id'] . '/' . bin2hex($tag)
+                               ];
                        }
                        $tags = ['title' => L10n::t('Tags: '), 'tags' => $tag_arr];
                        if ($cmd === 'edit') {
-                               $tags += ['removeanyurl' => 'tagrm/' . $link_item['id']];
-                               $tags += ['removetitle' => L10n::t('[Select tags to remove]')];
+                               $tags['removeanyurl'] = 'tagrm/' . $link_item['id'];
+                               $tags['removetitle'] = L10n::t('[Select tags to remove]');
                        }
                }
 
index 6f9cf553a773d5b09bc9c0f111056bf037825f19..2678748de5831e3e930a4dc45144edc0697beb87 100644 (file)
@@ -22,14 +22,14 @@ function tagrm_post(App $a)
 
        $tags = [];
        foreach (defaults($_POST, 'tag', []) as $tag) {
-               array_push($tags, hex2bin(notags(trim($tag))));
+               $tags[] = hex2bin(notags(trim($tag)));
        }
 
        $item_id = defaults($_POST,'item', 0);
        update_tags($item_id, $tags);
+       info(L10n::t('Tag(s) removed') . EOL);
 
        $a->internalRedirect($_SESSION['photo_return']);
-
        // NOTREACHED
 }
 
@@ -51,18 +51,16 @@ function update_tags($item_id, $tags){
        $old_tags = explode(',', $item['tag']);
 
        foreach ($tags as $new_tag) {
-               foreach ($old_tags as $count => $old_tag) {
+               foreach ($old_tags as $index => $old_tag) {
                        if (strcmp($old_tag, $new_tag) == 0) {
-                               unset($old_tags[$count]);
+                               unset($old_tags[$index]);
                                break;
                        }
                }
        }
 
-       $tag_str = implode(',',$old_tags);
+       $tag_str = implode(',', $old_tags);
        Term::insertFromTagFieldByItemId($item_id, $tag_str);
-
-       info(L10n::t('Tag(s) removed') . EOL);
 }
 
 function tagrm_content(App $a)
@@ -75,7 +73,7 @@ function tagrm_content(App $a)
        }
 
        if ($a->argc == 3) {
-               update_tags($a->argv[1], [hex2bin(notags(trim($a->argv[2])))]);
+               update_tags($a->argv[1], [notags(trim(hex2bin($a->argv[2])))]);
                $a->internalRedirect($_SESSION['photo_return']);
        }