diff options
author | Friendika <info@friendika.com> | 2011-08-01 21:02:25 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-08-01 21:02:25 -0700 |
commit | 2637831d9056862f7c3db718702116ef4652629a (patch) | |
tree | 2ee4076e6aeec3f79c64152abcce0ec284ef295f /mod/lostpass.php | |
parent | 8b31ff15f51c6936daedf28cc88c753214b569e0 (diff) | |
download | volse-hubzilla-2637831d9056862f7c3db718702116ef4652629a.tar.gz volse-hubzilla-2637831d9056862f7c3db718702116ef4652629a.tar.bz2 volse-hubzilla-2637831d9056862f7c3db718702116ef4652629a.zip |
some more zot changes migrating back to f9a mainline
Diffstat (limited to 'mod/lostpass.php')
-rw-r--r-- | mod/lostpass.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mod/lostpass.php b/mod/lostpass.php index 3453a0db4..b71398fa4 100644 --- a/mod/lostpass.php +++ b/mod/lostpass.php @@ -5,7 +5,7 @@ function lostpass_post(&$a) { $email = notags(trim($_POST['login-name'])); if(! $email) - goaway($a->get_baseurl()); + goaway(z_root()); $r = q("SELECT * FROM `user` WHERE ( `email` = '%s' OR `nickname` = '%s' ) AND `verified` = 1 AND `blocked` = 0 LIMIT 1", dbesc($email), @@ -14,7 +14,7 @@ function lostpass_post(&$a) { if(! count($r)) { notice( t('No valid account found.') . EOL); - goaway($a->get_baseurl()); + goaway(z_root()); } $uid = $r[0]['uid']; @@ -46,7 +46,7 @@ function lostpass_post(&$a) { . 'Content-transfer-encoding: 8bit' ); - goaway($a->get_baseurl()); + goaway(z_root()); } @@ -62,7 +62,7 @@ function lostpass_content(&$a) { ); if(! count($r)) { notice( t("Request could not be verified. \x28You may have previously submitted it.\x29 Password reset failed.") . EOL); - goaway($a->get_baseurl()); + goaway(z_root()); return; } $uid = $r[0]['uid']; |