From: Roland Häder Date: Tue, 20 Dec 2016 11:35:18 +0000 (+0100) Subject: added curly braces + space between "if" and brace X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a25b628286e6e0c00facb99a44e9fc4efd377536;p=friendica.git added curly braces + space between "if" and brace Signed-off-by: Roland Häder --- diff --git a/mod/tagrm.php b/mod/tagrm.php index c39b4ba51e..acdbd6a9c2 100644 --- a/mod/tagrm.php +++ b/mod/tagrm.php @@ -4,12 +4,13 @@ require_once('include/bbcode.php'); function tagrm_post(&$a) { - if (! local_user()) + if (! local_user()) { goaway(App::get_baseurl() . '/' . $_SESSION['photo_return']); + } - - if((x($_POST,'submit')) && ($_POST['submit'] === t('Cancel'))) + if ((x($_POST,'submit')) && ($_POST['submit'] === t('Cancel'))) { goaway(App::get_baseurl() . '/' . $_SESSION['photo_return']); + } $tag = ((x($_POST,'tag')) ? hex2bin(notags(trim($_POST['tag']))) : ''); $item = ((x($_POST,'item')) ? intval($_POST['item']) : 0 ); @@ -24,8 +25,8 @@ function tagrm_post(&$a) { } $arr = explode(',', $r[0]['tag']); - for($x = 0; $x < count($arr); $x ++) { - if($arr[$x] === $tag) { + for ($x = 0; $x < count($arr); $x ++) { + if ($arr[$x] === $tag) { unset($arr[$x]); break; }