aboutsummaryrefslogtreecommitdiffstats
path: root/include/identity.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-11-01 15:45:02 -0700
committerfriendica <info@friendica.com>2012-11-01 15:45:02 -0700
commit9bf4508ffb626d1aa2c9591b700e985b00abe577 (patch)
tree4d2cbc18301ddad2bfe4447dc1a6ab5c32d99a94 /include/identity.php
parentb400e4dfad16bfb346e08f5eee737064bc172f96 (diff)
downloadvolse-hubzilla-9bf4508ffb626d1aa2c9591b700e985b00abe577.tar.gz
volse-hubzilla-9bf4508ffb626d1aa2c9591b700e985b00abe577.tar.bz2
volse-hubzilla-9bf4508ffb626d1aa2c9591b700e985b00abe577.zip
cleanup channel management
Diffstat (limited to 'include/identity.php')
-rw-r--r--include/identity.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/identity.php b/include/identity.php
index b0a99a744..ca20fd22e 100644
--- a/include/identity.php
+++ b/include/identity.php
@@ -55,7 +55,10 @@ function create_identity($arr) {
$sig = base64url_encode(rsa_sign($guid,$key['prvkey']));
$hash = base64url_encode(hash('whirlpool',$guid . $sig,true));
- $primary = 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;
$r = q("insert into channel ( channel_account_id, channel_primary,
channel_name, channel_address, channel_guid, channel_guid_sig,