Chaine dynamique dans la trad = mauvaise idée :-)
This commit is contained in:
parent
bb6423c329
commit
aae7e2b894
|
@ -455,14 +455,14 @@ Cordialement.
|
||||||
$COOKIE=substr(md5(uniqid(rand(),1)),0,20);
|
$COOKIE=substr(md5(uniqid(rand(),1)),0,20);
|
||||||
// et de 6 pour la clé à entrer. ca me semble suffisant...
|
// et de 6 pour la clé à entrer. ca me semble suffisant...
|
||||||
$KEY=substr(md5(uniqid(rand(),1)),0,6);
|
$KEY=substr(md5(uniqid(rand(),1)),0,6);
|
||||||
// TODO : Translate this and insert this in alternc.po
|
$link="https://$L_FQDN/mem_cm.php?usr=$cuid&cookie=$COOKIE";
|
||||||
$txt=_("Hello,
|
$txt=sprintf(_("Hello,
|
||||||
|
|
||||||
Someone (maybe you) requested an email's address modification of the account
|
Someone (maybe you) requested an email's address modification of the account
|
||||||
".$db->f("login")." on $L_HOSTING
|
%s on %s
|
||||||
To confirm this, thank you to go to this address :
|
To confirm your request, go to this url :
|
||||||
|
|
||||||
https://$L_FQDN/mem_cm.php?usr=$cuid&cookie=$COOKIE
|
%s
|
||||||
|
|
||||||
(Warning : if this address is displayed on 2 lines, don't forgot to
|
(Warning : if this address is displayed on 2 lines, don't forgot to
|
||||||
take it on one line).
|
take it on one line).
|
||||||
|
@ -470,9 +470,9 @@ The panel will ask you the key given when the email address
|
||||||
modification was requested.
|
modification was requested.
|
||||||
|
|
||||||
If you didn't asked for this modification, it means that someone
|
If you didn't asked for this modification, it means that someone
|
||||||
did it instead of you. You should ignore this message. If it happens
|
did it instead of you. You can choose to ignore this message. If it happens
|
||||||
again later, please contact the server's administrator.");
|
again later, please contact the server's administrator."), $db->f("login"), $L_HOSTING, $link);
|
||||||
mail($newmail,"Changement d'email sur $L_HOSTING",$txt,"From: postmaster@$L_FQDN\nReply-to: postmaster@$L_FQDN");
|
mail($newmail,"Email modification request on $L_HOSTING",$txt,"From: postmaster@$L_FQDN\nReply-to: postmaster@$L_FQDN");
|
||||||
// Supprime les demandes précédentes de ce compte !
|
// Supprime les demandes précédentes de ce compte !
|
||||||
$db->query("DELETE FROM chgmail WHERE uid='$cuid';");
|
$db->query("DELETE FROM chgmail WHERE uid='$cuid';");
|
||||||
$db->query("INSERT INTO chgmail (cookie,ckey,uid,mail,ts) VALUES ('$COOKIE','$KEY','$cuid','$newmail',".time().");");
|
$db->query("INSERT INTO chgmail (cookie,ckey,uid,mail,ts) VALUES ('$COOKIE','$KEY','$cuid','$newmail',".time().");");
|
||||||
|
|
Loading…
Reference in New Issue