From: Roland Häder Date: Sun, 18 Jun 2017 21:15:50 +0000 (+0200) Subject: added missing curly brace ... :-( X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=29ca5b30216e9180b6ef703db784777c3ef14046;p=friendica.git added missing curly brace ... :-( Signed-off-by: Roland Häder --- diff --git a/include/socgraph.php b/include/socgraph.php index d17265b3ea..f055aebdf8 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -2144,7 +2144,7 @@ function update_gcontact($contact) { } // assign all unassigned fields from the database entry - foreach ($fields as $field => $data) + foreach ($fields as $field => $data) { if (!isset($contact[$field]) || ($contact[$field] == "")) { $contact[$field] = $r[0][$field]; }