X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Ffollow.php;h=711579ff5a013c0fb543db99bdc9d3b0a4603d0e;hb=0cd9db9cb7f4c96f597e37590a536eaae123238d;hp=cdeac6db2a5bbe97861ad13a3cde5a5bf612fb42;hpb=4a473611163a12b48d3bbad71dc54765be8789f9;p=friendica.git diff --git a/include/follow.php b/include/follow.php index cdeac6db2a..711579ff5a 100644 --- a/include/follow.php +++ b/include/follow.php @@ -30,10 +30,10 @@ function update_contact($id) { // make sure to not overwrite existing values with blank entries foreach ($ret AS $key => $val) { - if (isset($r[0][$key]) AND ($r[0][$key] != "") AND ($val == "")) + if (isset($r[0][$key]) && ($r[0][$key] != "") && ($val == "")) $ret[$key] = $r[0][$key]; - if (isset($r[0][$key]) AND ($ret[$key] != $r[0][$key])) + if (isset($r[0][$key]) && ($ret[$key] != $r[0][$key])) $update = true; }