aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2014-09-23 08:37:16 +0000
committerplegall <plg@piwigo.org>2014-09-23 08:37:16 +0000
commit3ef5464b262738487b78a1f3a6a09e3616c391cd (patch)
treef6e3d0a48062895cf2a252e53d2f43d4bcda4cb2
parentd58ee674d985101b2f002ec56073bee7a746df1b (diff)
bug fixed: register_user can be called with no ['mail_address']
git-svn-id: http://piwigo.org/svn/trunk@29759 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r--include/functions_user.inc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/functions_user.inc.php b/include/functions_user.inc.php
index 126a22838..91bac83bb 100644
--- a/include/functions_user.inc.php
+++ b/include/functions_user.inc.php
@@ -236,7 +236,7 @@ SELECT id
$keyargs_content = array(
get_l10n_args('User: %s', stripslashes($login) ),
- get_l10n_args('Email: %s', $_POST['mail_address']),
+ get_l10n_args('Email: %s', $mail_address),
get_l10n_args(''),
get_l10n_args('Admin: %s', $admin_url),
);