fixed: email validation links can be broken by mail servers
This commit is contained in:
parent
99aa2919d6
commit
2d42efd6b5
2 changed files with 2 additions and 1 deletions
|
|
@ -15,6 +15,7 @@
|
||||||
- fixed: i18n discrepencies in Gallery / GalleryAlbum / Photo
|
- fixed: i18n discrepencies in Gallery / GalleryAlbum / Photo
|
||||||
- fixed: After saving Photo, Add an Image points to wrong link
|
- fixed: After saving Photo, Add an Image points to wrong link
|
||||||
- fixed: "Back to Album" link doesn't work
|
- fixed: "Back to Album" link doesn't work
|
||||||
|
- fixed: email validation links can be broken by mail servers
|
||||||
|
|
||||||
7.5.9
|
7.5.9
|
||||||
- fixed: Collaboration System attachments follow site's max size instead of CS's
|
- fixed: Collaboration System attachments follow site's max size instead of CS's
|
||||||
|
|
|
||||||
|
|
@ -239,7 +239,7 @@ sub createAccountSave {
|
||||||
$mail->addText(
|
$mail->addText(
|
||||||
$i18n->get('email address validation email body','AuthWebGUI') . "\n\n"
|
$i18n->get('email address validation email body','AuthWebGUI') . "\n\n"
|
||||||
. $session->url->getSiteURL()
|
. $session->url->getSiteURL()
|
||||||
. $session->url->page("op=auth;method=validateEmail;key=".$key)
|
. $session->url->page("op=auth;method=validateEmail;key=".$key) . "\n\n"
|
||||||
);
|
);
|
||||||
$mail->addFooter;
|
$mail->addFooter;
|
||||||
$mail->send;
|
$mail->send;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue