From 29ca5b30216e9180b6ef703db784777c3ef14046 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roland=20H=C3=A4der?= Date: Sun, 18 Jun 2017 23:15:50 +0200 Subject: [PATCH] added missing curly brace ... :-( MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- include/socgraph.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/socgraph.php b/include/socgraph.php index d17265b3e..f055aebdf 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]; }