diff options
author | friendica <info@friendica.com> | 2012-12-13 16:27:58 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-12-13 16:27:58 -0800 |
commit | dd2483221d3ee639088c0baca62a3472c76ecd1c (patch) | |
tree | fc0f7aaa577b723aa42385b23fdf94c073bfc2ff /include/identity.php | |
parent | 2a782597ba85ce4c55181330dde5ec3ff26195fd (diff) | |
download | volse-hubzilla-dd2483221d3ee639088c0baca62a3472c76ecd1c.tar.gz volse-hubzilla-dd2483221d3ee639088c0baca62a3472c76ecd1c.tar.bz2 volse-hubzilla-dd2483221d3ee639088c0baca62a3472c76ecd1c.zip |
admittedly local magic-auth is easy so that's mostly done. Now it gets hard.
Diffstat (limited to 'include/identity.php')
-rw-r--r-- | include/identity.php | 7 |
1 files changed, 3 insertions, 4 deletions
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, |