]> git.mxchange.org Git - friendica.git/commitdiff
added curly braces + space between "if" and brace
authorRoland Häder <roland@mxchange.org>
Tue, 20 Dec 2016 11:35:18 +0000 (12:35 +0100)
committerRoland Häder <roland@mxchange.org>
Tue, 20 Dec 2016 11:36:09 +0000 (12:36 +0100)
Signed-off-by: Roland Häder <roland@mxchange.org>
mod/tagrm.php

index c39b4ba51e2f3d53888d1b8ad804150adb470948..acdbd6a9c2b8a1809077ac4cf38576c78c428666 100644 (file)
@@ -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;
                }