aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Email_resend.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-01-28 00:18:29 +0100
committerMario Vavti <mario@mariovavti.com>2018-01-28 00:18:29 +0100
commit423274b9230ced36a3a659b8518c94d7b17ef107 (patch)
tree3969897cb368c9ed3a27579d2db1cdc8dfd60525 /Zotlabs/Module/Email_resend.php
parent6c4054c20bf2e9c843b065318dd252233513f201 (diff)
parent69099a2732b749b4e370e16523152068e15cbd6f (diff)
downloadvolse-hubzilla-423274b9230ced36a3a659b8518c94d7b17ef107.tar.gz
volse-hubzilla-423274b9230ced36a3a659b8518c94d7b17ef107.tar.bz2
volse-hubzilla-423274b9230ced36a3a659b8518c94d7b17ef107.zip
Merge remote-tracking branch 'mike/master' into dev
Diffstat (limited to 'Zotlabs/Module/Email_resend.php')
-rw-r--r--Zotlabs/Module/Email_resend.php4
1 files changed, 1 insertions, 3 deletions
diff --git a/Zotlabs/Module/Email_resend.php b/Zotlabs/Module/Email_resend.php
index 57a82ebda..f8a336be0 100644
--- a/Zotlabs/Module/Email_resend.php
+++ b/Zotlabs/Module/Email_resend.php
@@ -7,8 +7,6 @@ class Email_resend extends \Zotlabs\Web\Controller {
function post() {
-
-
if($_POST['token']) {
if(! account_approve(trim($_POST['token']))) {
notice(t('Token verification failed.'));
@@ -35,7 +33,7 @@ class Email_resend extends \Zotlabs\Web\Controller {
notice(t('Unable to resend email verification message.'));
}
- return;
+ goaway(z_root() . '/email_validation/' . bin2hex($email));
}