aboutsummaryrefslogtreecommitdiffstats
path: root/register.php
diff options
context:
space:
mode:
authorrub <rub@piwigo.org>2007-04-27 05:22:17 +0000
committerrub <rub@piwigo.org>2007-04-27 05:22:17 +0000
commita0295117fe917f2df4b4d401572a448117b6db7f (patch)
tree4bd7471cf2ac9e8add9440fe5c58fcb2128c3841 /register.php
parentccc17f2f7f42aa2e0668198c1a60cb912f81da84 (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 'register.php')
-rw-r--r--register.php7
1 files changed, 2 insertions, 5 deletions
diff --git a/register.php b/register.php
index 4d86d5e3b..74980a156 100644
--- a/register.php
+++ b/register.php
@@ -4,7 +4,6 @@
// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
// | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net |
// +-----------------------------------------------------------------------+
-// | branch : BSF (Best So Far)
// | file : $Id$
// | last update : $Date$
// | last modifier : $Author$
@@ -50,12 +49,10 @@ if (isset($_POST['submit']))
}
$errors =
- array_merge(
- $errors,
register_user($_POST['login'],
$_POST['password'],
- $_POST['mail_address'])
- );
+ $_POST['mail_address'],
+ $errors);
if (count($errors) == 0)
{