mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-06-02 04:15:05 +02:00
- bug fixed : when a error occured during registration, the mail address
submitted was not displayed on correction form git-svn-id: http://piwigo.org/svn/trunk@740 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
+2
-2
@@ -49,7 +49,7 @@ SELECT id
|
||||
}
|
||||
|
||||
$login = !empty($_POST['login'])?$_POST['login']:'';
|
||||
$email = !empty($_POST['login'])?$_POST['login']:'';
|
||||
$email = !empty($_POST['mail_address'])?$_POST['mail_address']:'';
|
||||
|
||||
//----------------------------------------------------- template initialization
|
||||
//
|
||||
@@ -70,7 +70,7 @@ $template->assign_vars(array(
|
||||
|
||||
'F_ACTION' => add_session_id('register.php'),
|
||||
'F_LOGIN' => $login,
|
||||
'F_MAIL' => $email
|
||||
'F_EMAIL' => $email
|
||||
));
|
||||
|
||||
//-------------------------------------------------------------- errors display
|
||||
|
||||
Reference in New Issue
Block a user