diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-07-13 17:48:11 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-07-13 17:48:11 -0700 |
commit | 800eec5bee9a63940234f94eb3c480a13de1b123 (patch) | |
tree | 3ad635fa74cf9b588a31ea5830969b9209047d1e /include/Contact.php | |
parent | 6916c1076cd238779a9653adce81eabda2b655ab (diff) | |
download | volse-hubzilla-800eec5bee9a63940234f94eb3c480a13de1b123.tar.gz volse-hubzilla-800eec5bee9a63940234f94eb3c480a13de1b123.tar.bz2 volse-hubzilla-800eec5bee9a63940234f94eb3c480a13de1b123.zip |
merge from redmatrix
Diffstat (limited to 'include/Contact.php')
-rw-r--r-- | include/Contact.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/Contact.php b/include/Contact.php index ad3580f42..6b5f9388c 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -333,7 +333,7 @@ function channel_remove($channel_id, $local = true, $unset_session=true) { ); // if this was the default channel, set another one as default if($a->account['account_default_channel'] == $channel_id) { - $r = q("select channel_id from channel where channel_account_id = %d and not ( channel_pageflags & %d)>0 limit 1", + $r = q("select channel_id from channel where channel_account_id = %d and channel_removed = 0 limit 1", intval($a->account['account_id']), intval(PAGE_REMOVED)); if ($r) { |