]> git.mxchange.org Git - friendica.git/commitdiff
Make the code nicer
authorMichael <heluecht@pirati.ca>
Sun, 29 Jan 2017 14:00:44 +0000 (14:00 +0000)
committerMichael <heluecht@pirati.ca>
Sun, 29 Jan 2017 14:00:44 +0000 (14:00 +0000)
include/Contact.php

index 362bce1bac52fa341b912b756792b4c5c9671f4c..32ee0ab95c990b735b3ada12f94096e5563ecc1f 100644 (file)
@@ -64,12 +64,12 @@ function contact_remove($id) {
        $r = q("SELECT `uid` FROM `contact` WHERE `id` = %d AND NOT `self` LIMIT 1",
                intval($id)
        );
-       if((! dbm::is_result($r)) || (! intval($r[0]['uid']))) {
+       if (!dbm::is_result($r) || !intval($r[0]['uid'])) {
                return;
        }
 
        $archive = get_pconfig($r[0]['uid'], 'system','archive_removed_contacts');
-       if($archive) {
+       if ($archive) {
                q("update contact set `archive` = 1, `network` = 'none', `writable` = 0 where id = %d",
                        intval($id)
                );