From: Jonny Tischbein Date: Thu, 25 Oct 2018 19:49:18 +0000 (+0200) Subject: Code Standards: Spaces X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=581d1b9c9ef723d5b8f0b4fa5f653c84aaf09f3f;p=friendica.git Code Standards: Spaces --- diff --git a/mod/tagrm.php b/mod/tagrm.php index 1683bf1d6f..f92bd856b4 100644 --- a/mod/tagrm.php +++ b/mod/tagrm.php @@ -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']); }