Details
-
Type:
Improvement
-
Status:
Closed
-
Priority:
Critical
-
Resolution: Fixed
-
Affects Version/s: 1.9.4
-
Fix Version/s: 1.9.5
-
Component/s: Authentication
-
Labels:None
-
Affected Branches:MOODLE_19_STABLE
-
Fixed Branches:MOODLE_19_STABLE
Description
When a user selects "(Portugues - Brazil (pt_br)" as its "Preferred Language" option, the user can not change its email because when a confirmation message is sent to this new email, there is no link to confirm the email update.
To solve this problem, here is the correction at line 103 in moodledata/lang/pt_br_utf8/auth.php :
It was this:
====
$string['auth_emailupdatemessage'] = '$a->fullname,
Você ativou o pedido de mudança de endereço email como usuário do site $a->site. Clique o seguinte link para confirmar esta mudança.';
====
With the simple correction:
===
$string['auth_emailupdatemessage'] = '$a->fullname,
Você ativou o pedido de mudança de endereço email como usuário do site $a->site. Clique o seguinte link para confirmar esta mudança.
$a->url';
===
fixed, thanks