hello !
just a little remaing bug in 3.7 with confirmation mail.
if username contain special caracters, the generated url is invalid.
just have to change line 120 of sys/CODOF/User/Register.php
with this one :
$confirm_url = RURI . "user/confirm" . "&user=" . urlencode($fields['username']) . "&token=" . $this->token;
to encode field username.
hello !
just a little remaing bug in 3.7 with confirmation mail.
if username contain special caracters, the generated url is invalid.
just have to change line 120 of sys/CODOF/User/Register.php
with this one :
````
$confirm_url = RURI . "user/confirm" . "&user=" . urlencode($fields['username']) . "&token=" . $this->token;
````
to encode field username.
please, excuse my bad english! ( i'm french, and i know, it's not a good excuse ! ;) )
edited Feb 20 '17 at 10:19 am