diff options
author | rub <rub@piwigo.org> | 2007-10-06 06:41:18 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2007-10-06 06:41:18 +0000 |
commit | 5132cc1f87025bd17d6bd90e5ac8ad73288bf482 (patch) | |
tree | 9c871884505b17b689546d00ae7bfb34df4de0b9 /install.php | |
parent | 924733b9f0678a8071abda29af74b88d27f06000 (diff) |
Resolved 0000759: email unique for each user
Fix bug of last commit 2115
git-svn-id: http://piwigo.org/svn/trunk@2124 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'install.php')
-rw-r--r-- | install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install.php b/install.php index 33ccec937..cbf4bf12a 100644 --- a/install.php +++ b/install.php @@ -268,7 +268,7 @@ if ( isset( $_POST['install'] )) array_push( $errors, $lang['reg_err_mail_address'] ); else { - $error_mail_address = validate_mail_address($admin_mail); + $error_mail_address = validate_mail_address(null, $admin_mail); if (!empty($error_mail_address)) array_push( $errors, $error_mail_address ); } |