]> git.mxchange.org Git - friendica.git/blobdiff - mod/tagrm.php
Merge remote-tracking branch 'upstream/develop' into 1612-unused-indexes
[friendica.git] / mod / tagrm.php
index 212f91d16ee7ff8dd3c1c735f55af1784d993e90..2a9a26e37bfd4ead658a459076ae082abfa8f4c9 100644 (file)
@@ -4,12 +4,13 @@ require_once('include/bbcode.php');
 
 function tagrm_post(App &$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(App &$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;
                }
@@ -58,7 +59,7 @@ function tagrm_content(App &$a) {
        }
 
        $item = (($a->argc > 1) ? intval($a->argv[1]) : 0);
-       if(! $item) {
+       if (! $item) {
                goaway(App::get_baseurl() . '/' . $_SESSION['photo_return']);
                // NOTREACHED
        }
@@ -86,8 +87,7 @@ function tagrm_content(App &$a) {
        $o .= '<input type="hidden" name="item" value="' . $item . '" />';
        $o .= '<ul>';
 
-
-       foreach($arr as $x) {
+       foreach ($arr as $x) {
                $o .= '<li><input type="checkbox" name="tag" value="' . bin2hex($x) . '" >' . bbcode($x) . '</input></li>';
        }
 
@@ -97,5 +97,5 @@ function tagrm_content(App &$a) {
        $o .= '</form>';
 
        return $o;
-       
+
 }