aboutsummaryrefslogtreecommitdiffstats
path: root/include/account.php
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-06-27 19:04:00 -0700
committerredmatrix <git@macgirvin.com>2016-06-27 19:04:00 -0700
commitb155e93ab134759f3d31a509d197916a5af84adb (patch)
treefc37281f1a73cfe8186d319f2a197b9df74b191c /include/account.php
parent3704ff57cb65dce6ddd17136580e3bf82e7d97f2 (diff)
downloadvolse-hubzilla-b155e93ab134759f3d31a509d197916a5af84adb.tar.gz
volse-hubzilla-b155e93ab134759f3d31a509d197916a5af84adb.tar.bz2
volse-hubzilla-b155e93ab134759f3d31a509d197916a5af84adb.zip
add letsencrypt x3 intermediate cert and new cert file, improve UX of new registrations
Diffstat (limited to 'include/account.php')
-rw-r--r--include/account.php18
1 files changed, 17 insertions, 1 deletions
diff --git a/include/account.php b/include/account.php
index caf12878e..c02a74928 100644
--- a/include/account.php
+++ b/include/account.php
@@ -499,11 +499,27 @@ function account_approve($hash) {
intval($register[0]['uid'])
);
+ // get a fresh copy after we've modified it.
+
+ $account = q("SELECT * FROM account WHERE account_id = %d LIMIT 1",
+ intval($register[0]['uid'])
+ );
+
+ if(! $account)
+ return $ret;
+
+
+
if(get_config('system','auto_channel_create') || UNO)
auto_channel_create($register[0]['uid']);
+ else {
+ $_SESSION['login_return_url'] = 'new_channel';
+ authenticate_success($account[0],true,true,false,true);
+ }
+
- info( t('Account verified. Please login.') . EOL );
+ // info( t('Account verified. Please login.') . EOL );
return true;
}