aboutsummaryrefslogtreecommitdiffstats
path: root/include/identity.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-12-13 16:27:58 -0800
committerfriendica <info@friendica.com>2012-12-13 16:27:58 -0800
commitdd2483221d3ee639088c0baca62a3472c76ecd1c (patch)
treefc0f7aaa577b723aa42385b23fdf94c073bfc2ff /include/identity.php
parent2a782597ba85ce4c55181330dde5ec3ff26195fd (diff)
downloadvolse-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.php7
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,