diff options
-rw-r--r-- | inc/auth.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/auth.php b/inc/auth.php index 64b865594..a53b77bef 100644 --- a/inc/auth.php +++ b/inc/auth.php @@ -387,10 +387,10 @@ function register(){ $pass = auth_pwgen(); // automatically generate password } elseif (empty($_POST['pass']) || empty($_POST['passchk'])) { - msg($lang['reqmissing'], -1); // complain about missing passwords + msg($lang['regmissing'], -1); // complain about missing passwords return false; } elseif ($_POST['pass'] != $_POST['passchk']) { - msg($lang['reqbadpass'], -1); // complain about misspelled passwords + msg($lang['regbadpass'], -1); // complain about misspelled passwords return false; } else { $pass = $_POST['pass']; // accept checked and valid password |