diff options
author | rub <rub@piwigo.org> | 2007-04-27 05:22:17 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2007-04-27 05:22:17 +0000 |
commit | a0295117fe917f2df4b4d401572a448117b6db7f (patch) | |
tree | 4bd7471cf2ac9e8add9440fe5c58fcb2128c3841 /include/functions_user.inc.php | |
parent | ccc17f2f7f42aa2e0668198c1a60cb912f81da84 (diff) |
Issue 0000682: Error on user registration
On register page when the 2 passwords are not the same, an error occurs but user is also created.
=> Just error must be raised.
git-svn-id: http://piwigo.org/svn/trunk@1985 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/functions_user.inc.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/functions_user.inc.php b/include/functions_user.inc.php index fb7d32494..5ed6c169f 100644 --- a/include/functions_user.inc.php +++ b/include/functions_user.inc.php @@ -44,11 +44,10 @@ function validate_mail_address( $mail_address ) } } -function register_user($login, $password, $mail_address) +function register_user($login, $password, $mail_address, $errors = array()) { global $lang, $conf; - $errors = array(); if ($login == '') { array_push($errors, $lang['reg_err_login1']); |