aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Register.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2021-05-06 19:06:53 +0000
committerMario <mario@mariovavti.com>2021-05-06 19:06:53 +0000
commit1fd5f5c893d224a523ecf279ec65c1cf933b2065 (patch)
treec331e87d4f65fcdb6d7dbd3c9b9030e6911602cf /Zotlabs/Module/Register.php
parent43260891b77a72ab85a613efb45186b2804d7f9b (diff)
downloadvolse-hubzilla-1fd5f5c893d224a523ecf279ec65c1cf933b2065.tar.gz
volse-hubzilla-1fd5f5c893d224a523ecf279ec65c1cf933b2065.tar.bz2
volse-hubzilla-1fd5f5c893d224a523ecf279ec65c1cf933b2065.zip
register: redirect unverified registration emails to the verification form
Diffstat (limited to 'Zotlabs/Module/Register.php')
-rw-r--r--Zotlabs/Module/Register.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/Zotlabs/Module/Register.php b/Zotlabs/Module/Register.php
index 33a49c7d7..ecdcd90dd 100644
--- a/Zotlabs/Module/Register.php
+++ b/Zotlabs/Module/Register.php
@@ -116,9 +116,12 @@ class Register extends Controller {
if ($email) {
$email_result = check_account_email($email);
if ($email_result['error']) {
- notice($email_result['message'] . EOL);
+ if ($email_result['email_unverified']) {
+ goaway(z_root() . '/regate/' . bin2hex($email) . 'e');
+ }
return;
}
+
}
// case when an invited prepares the own account by supply own pw, accept tos, prepage channel (if auto)
@@ -282,7 +285,7 @@ class Register extends Controller {
}
else {
- if (!$invonly ) {
+ if (!$invonly) {
$well = true;
}
else {