From dd2483221d3ee639088c0baca62a3472c76ecd1c Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 13 Dec 2012 16:27:58 -0800 Subject: admittedly local magic-auth is easy so that's mostly done. Now it gets hard. --- include/identity.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'include/identity.php') diff --git a/include/identity.php b/include/identity.php index c188c5025..914da6384 100644 --- a/include/identity.php +++ b/include/identity.php @@ -55,10 +55,9 @@ function create_identity($arr) { $sig = base64url_encode(rsa_sign($guid,$key['prvkey'])); $hash = base64url_encode(hash('whirlpool',$guid . $sig,true)); - $r = q("select channel_id from channel where channel_account_id = %d and channel_primary = 1 limit 1", - intval($arr['account_id']) - ); - $primary = (! $r) ? true : false; + // Force primary until importation works, then we'll offer a choice + + $primary = true; $r = q("insert into channel ( channel_account_id, channel_primary, channel_name, channel_address, channel_guid, channel_guid_sig, -- cgit v1.2.3