add letsencrypt x3 intermediate cert and new cert file, improve UX of new registrations

This commit is contained in:
redmatrix
2016-06-27 19:04:00 -07:00
parent 3704ff57cb
commit b155e93ab1
7 changed files with 457 additions and 689 deletions

View File

@@ -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;
}