]> git.mxchange.org Git - friendica.git/commitdiff
Fix wrong variable name
authorMichael <heluecht@pirati.ca>
Thu, 12 Mar 2020 18:58:48 +0000 (18:58 +0000)
committerMichael <heluecht@pirati.ca>
Thu, 12 Mar 2020 18:58:48 +0000 (18:58 +0000)
src/Model/GContact.php

index 5bcac5a013977c325bf8880be7531a2a265c508e..2606edb9e43803fd4dc2a3349267602a150aa095 100644 (file)
@@ -1343,7 +1343,7 @@ class GContact
                        foreach ($contacts as $contact) {
                                $gcontact = DBA::selectFirst('gcontact', ['id'], ['nurl' => Strings::normaliseLink(($contact))]);
                                if (DBA::isResult($gcontact)) {
-                                       $field = [];
+                                       $fields = [];
                                        if (in_array($contact, $followers)) {
                                                $fields = ['gcid' => $gcid, 'follower-gcid' => $gcontact['id']];
                                        } elseif (in_array($contact, $followings)) {