X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Fupdate_gcontact.php;h=97c825352eb26919930ea92c99727077875389d9;hb=0cd9db9cb7f4c96f597e37590a536eaae123238d;hp=7a3e48937ecc2241162c645d726464a976befbb8;hpb=1c38540f20b3207a0fd09ef0802125e45e83bcf6;p=friendica.git diff --git a/include/update_gcontact.php b/include/update_gcontact.php index 7a3e48937e..97c825352e 100644 --- a/include/update_gcontact.php +++ b/include/update_gcontact.php @@ -5,7 +5,7 @@ use Friendica\Core\Config; function update_gcontact_run(&$argv, &$argc) { global $a; - require_once 'include/Scrape.php'; + require_once 'include/probe.php'; require_once 'include/socgraph.php'; logger('update_gcontact: start'); @@ -40,16 +40,16 @@ function update_gcontact_run(&$argv, &$argc) { return; } - if (($data["name"] == "") AND ($r[0]['name'] != "")) + if (($data["name"] == "") && ($r[0]['name'] != "")) $data["name"] = $r[0]['name']; - if (($data["nick"] == "") AND ($r[0]['nick'] != "")) + if (($data["nick"] == "") && ($r[0]['nick'] != "")) $data["nick"] = $r[0]['nick']; - if (($data["addr"] == "") AND ($r[0]['addr'] != "")) + if (($data["addr"] == "") && ($r[0]['addr'] != "")) $data["addr"] = $r[0]['addr']; - if (($data["photo"] == "") AND ($r[0]['photo'] != "")) + if (($data["photo"] == "") && ($r[0]['photo'] != "")) $data["photo"] = $r[0]['photo'];