aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-10-16 15:55:41 -0700
committerzotlabs <mike@macgirvin.com>2017-10-16 15:55:41 -0700
commit18279234fd80b016bc81bc90069392ef5ce00b70 (patch)
treef2fb585289e08adc0b3f3288238024e3513d078c /Zotlabs
parentcf7481da53d051c385dbff8d813befc34c8f68ef (diff)
downloadvolse-hubzilla-18279234fd80b016bc81bc90069392ef5ce00b70.tar.gz
volse-hubzilla-18279234fd80b016bc81bc90069392ef5ce00b70.tar.bz2
volse-hubzilla-18279234fd80b016bc81bc90069392ef5ce00b70.zip
mod_register - don't re-use the password, force them to type it in twice each time unless their browser saves passwords.
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Module/Register.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/Zotlabs/Module/Register.php b/Zotlabs/Module/Register.php
index d4573156c..9a364e154 100644
--- a/Zotlabs/Module/Register.php
+++ b/Zotlabs/Module/Register.php
@@ -27,7 +27,7 @@ class Register extends \Zotlabs\Web\Controller {
$result = check_account_email($_REQUEST['email']);
break;
case 'password_check.json':
- $result = check_account_password($_REQUEST['password']);
+ $result = check_account_password($_REQUEST['password1']);
break;
default:
break;
@@ -231,8 +231,8 @@ class Register extends \Zotlabs\Web\Controller {
$enable_tos = 1 - intval(get_config('system','no_termsofservice'));
$email = array('email', t('Your email address'), ((x($_REQUEST,'email')) ? strip_tags(trim($_REQUEST['email'])) : ""));
- $password = array('password', t('Choose a password'), ((x($_REQUEST,'password')) ? trim($_REQUEST['password']) : ""));
- $password2 = array('password2', t('Please re-enter your password'), ((x($_REQUEST,'password2')) ? trim($_REQUEST['password2']) : ""));
+ $password = array('password', t('Choose a password'), '');
+ $password2 = array('password2', t('Please re-enter your password'), '');
$invite_code = array('invite_code', t('Please enter your invitation code'), ((x($_REQUEST,'invite_code')) ? strip_tags(trim($_REQUEST['invite_code'])) : ""));
$name = array('name', t('Name or caption'), ((x($_REQUEST,'name')) ? $_REQUEST['name'] : ''), t('Examples: "Bob Jameson", "Lisa and her Horses", "Soccer", "Aviation Group"'));
$nickhub = '@' . str_replace(array('http://','https://','/'), '', get_config('system','baseurl'));