aboutsummaryrefslogtreecommitdiffstats
path: root/include/Contact.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-12-01 18:53:49 -0800
committerfriendica <info@friendica.com>2014-12-01 18:53:49 -0800
commitf3b92c0ef228a25c6d6734d60a23251506317b3f (patch)
treef20fa34ea54008af6b6ea39cf9e6800ee3aec3e8 /include/Contact.php
parent0b84ba1eab8a583f7cf89f44f37b78e9cac72e1b (diff)
parent460d379e7efc074808109b4c9acd0aea46460d16 (diff)
downloadvolse-hubzilla-f3b92c0ef228a25c6d6734d60a23251506317b3f.tar.gz
volse-hubzilla-f3b92c0ef228a25c6d6734d60a23251506317b3f.tar.bz2
volse-hubzilla-f3b92c0ef228a25c6d6734d60a23251506317b3f.zip
Merge https://github.com/friendica/red into pending_merge
Conflicts: version.inc
Diffstat (limited to 'include/Contact.php')
-rw-r--r--include/Contact.php10
1 files changed, 6 insertions, 4 deletions
diff --git a/include/Contact.php b/include/Contact.php
index f0c7cd737..64779d45f 100644
--- a/include/Contact.php
+++ b/include/Contact.php
@@ -128,12 +128,14 @@ function vcard_from_xchan($xchan, $observer = null, $mode = '') {
function abook_toggle_flag($abook,$flag) {
- $r = q("UPDATE abook set abook_flags = (abook_flags & ~%d) where abook_id = %d and abook_channel = %d",
- intval($flag),
- intval($abook['abook_id']),
- intval($abook['abook_channel'])
+ $r = q("UPDATE abook set abook_flags = (abook_flags %s %d) where abook_id = %d and abook_channel = %d",
+ db_getfunc('^'),
+ intval($flag),
+ intval($abook['abook_id']),
+ intval($abook['abook_channel'])
);
+
// if unsetting the archive bit, update the timestamps so we'll try to connect for an additional 30 days.
if(($flag === ABOOK_FLAG_ARCHIVED) && ($abook['abook_flags'] & ABOOK_FLAG_ARCHIVED)) {