]> git.mxchange.org Git - friendica.git/commitdiff
Fixing parentheses
authorMichael <heluecht@pirati.ca>
Wed, 12 Sep 2018 18:49:36 +0000 (18:49 +0000)
committerMichael <heluecht@pirati.ca>
Wed, 12 Sep 2018 18:49:36 +0000 (18:49 +0000)
mod/contacts.php

index 69bf2b47f9221cd38b2c5ad5f653f1114d469293..1604f0b6605ec43d6f0e936972ad2394a45c11f2 100644 (file)
@@ -49,7 +49,7 @@ function contacts_init(App $a)
                }
 
                // Don't display contacts that are about to be deleted
-               if (($contact['network'] == Protocol::PHANTOM)) {
+               if ($contact['network'] == Protocol::PHANTOM) {
                        $contact = false;
                }
        }