Project

General

Profile

Actions

Bug #23984

closed

tx_felogin: forgot password-mails links not clickable

Added by Susanna Kuenzl over 13 years ago. Updated over 6 years ago.

Status:
Closed
Priority:
Should have
Category:
felogin
Target version:
Start date:
2010-11-08
Due date:
% Done:

100%

Estimated time:
TYPO3 Version:
4.5
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:

Description

E-Mails containing the text "to set a new password please visit the following link:" have a link to the page to reset the password. This link contains unmasked square brackets and is not clickable up to the end.

The solution is used already by tx_srfeuserregister
http://bugs.typo3.org/view.php?id=12892

File pi1/class.tx_felogin_pi1.php
// link
$link = ($isAbsRelPrefix ? '' : $this->conf['linkPrefix']) . $this->pi_getPageLink($GLOBALS['TSFE']->id, '', array(
$this->prefixId . '[user]' => $user['uid'],
$this->prefixId . '[forgothash]' => $randHash
));
//add:
$link = preg_replace(
array('/\[/', '/\]/'),
array('%5B', '%5D'),
$link
);

(issue imported from #M16300)


Files

patch-felogin.diff (752 Bytes) patch-felogin.diff Administrator Admin, 2011-01-06 10:10
16300.diff (1.06 KB) 16300.diff Administrator Admin, 2011-01-06 11:06

Related issues 3 (0 open3 closed)

Related to TYPO3 Core - Bug #22118: URL in text mails contain often square brackets which irritate Thunderbird for exampleClosed2010-02-14

Actions
Related to TYPO3 Core - Bug #73060: Felogin - forgotHash needs urldecodeClosed2016-02-01

Actions
Has duplicate TYPO3 Core - Feature #25284: add braces to link in forgot password emailClosed2011-03-08

Actions
Actions

Also available in: Atom PDF