From 94dfe87a6baba5424916a831877f91875a85278d Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 18 Jul 2013 21:35:28 -0700 Subject: fix default channel setting after import --- include/identity.php | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'include') diff --git a/include/identity.php b/include/identity.php index 4bbc8970b..7e42e33a8 100644 --- a/include/identity.php +++ b/include/identity.php @@ -241,11 +241,13 @@ function set_default_login_identity($account_id,$channel_id,$force = true) { $r = q("select account_default_channel from account where account_id = %d limit 1", intval($account_id) ); - if(($r) && (count($r)) && ((! intval($r[0]['account_default_channel'])) || $force)) { - $r = q("update account set account_default_channel = %d where account_id = %d limit 1", - intval($channel_id), - intval($account_id) - ); + if($r) { + if((intval($r[0]['account_default_channel']) == 0) || ($force)) { + $r = q("update account set account_default_channel = %d where account_id = %d limit 1", + intval($channel_id), + intval($account_id) + ); + } } } -- cgit v1.2.3