]> git.mxchange.org Git - friendica.git/commitdiff
Code Standards: Spaces
authorJonny Tischbein <jonny_tischbein@systemli.org>
Thu, 25 Oct 2018 19:49:18 +0000 (21:49 +0200)
committerJonny Tischbein <jonny_tischbein@systemli.org>
Thu, 25 Oct 2018 19:49:18 +0000 (21:49 +0200)
mod/tagrm.php

index 1683bf1d6f4df22e3ec8cc8b8481923fa732d07a..f92bd856b4c3f368812131488abe7a905b87463f 100644 (file)
@@ -63,7 +63,7 @@ function update_tags($item_id, $tags){
        $tag_str = implode(',',$old_tags);
        Term::insertFromTagFieldByItemId($item_id, $tag_str);
 
-       info(L10n::t('Tag(s) removed') . EOL );
+       info(L10n::t('Tag(s) removed') . EOL);
 }
 
 function tagrm_content(App $a)
@@ -75,7 +75,7 @@ function tagrm_content(App $a)
                // NOTREACHED
        }
 
-       if ($a->argc == 3){
+       if ($a->argc == 3) {
                update_tags($a->argv[1], [hex2bin(notags(trim($a->argv[2])))]);
                $a->internalRedirect($_SESSION['photo_return']);
        }