added curly braces + space between "if" and brace

Signed-off-by: Roland Häder <roland@mxchange.org>
This commit is contained in:
Roland Häder 2016-12-20 12:35:18 +01:00
parent 61c1317f80
commit 76f43f9b30
1 changed files with 6 additions and 5 deletions

View File

@ -4,12 +4,13 @@ require_once('include/bbcode.php');
function tagrm_post(App &$a) { function tagrm_post(App &$a) {
if (! local_user()) if (! local_user()) {
goaway(App::get_baseurl() . '/' . $_SESSION['photo_return']); 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']); goaway(App::get_baseurl() . '/' . $_SESSION['photo_return']);
}
$tag = ((x($_POST,'tag')) ? hex2bin(notags(trim($_POST['tag']))) : ''); $tag = ((x($_POST,'tag')) ? hex2bin(notags(trim($_POST['tag']))) : '');
$item = ((x($_POST,'item')) ? intval($_POST['item']) : 0 ); $item = ((x($_POST,'item')) ? intval($_POST['item']) : 0 );
@ -24,8 +25,8 @@ function tagrm_post(App &$a) {
} }
$arr = explode(',', $r[0]['tag']); $arr = explode(',', $r[0]['tag']);
for($x = 0; $x < count($arr); $x ++) { for ($x = 0; $x < count($arr); $x ++) {
if($arr[$x] === $tag) { if ($arr[$x] === $tag) {
unset($arr[$x]); unset($arr[$x]);
break; break;
} }