Bug #12382
sendSubscribtionConfirmationEmail does not send a link
| Status: | New | Start date: | 2011-01-19 | |
|---|---|---|---|---|
| Priority: | Must have | Due date: | ||
| Assignee: | Dmitry Dulepov | % Done: | 0% |
|
| Category: | Bug | |||
| Target version: | 1.1.2 | |||
| Votes: | 0 |
Description
Link is not send because of a semicolon instead of a dot. T3Blog v 1.1.0
Change:
$message = $this->pi_getLL('subscribe.confirmationHello') . chr(10) .
$this->pi_getLL('subscribe.confirmationtext') . chr(10);
'<' . $unsubscribeLink . '>' . chr(10);
to
$message = $this->pi_getLL('subscribe.confirmationHello') . chr(10) .
$this->pi_getLL('subscribe.confirmationtext') . chr(10) .
'<' . $unsubscribeLink . '>' . chr(10);
t3lib_div::plainMailEncoded($receiver, $subject, $message, $headers);
In file pi1\widgets\blogList\class.singleFunctions.php
History
Updated by Christoph Hermann about 2 years ago
Additionaly the german translation contains an additional :
<label index="subscribe.confirmation">Registrierung für Blogpost: </label>
$subject = $this->pi_getLL('subscribe.confirmation') . ': ' . $postTitle;
This sets the subject of the email to:
Registrierung für Blogpost: : Erzählte Erfahrung
(two : instead of 1)
Updated by Felix Nagel almost 2 years ago
- Category set to Bug
- Assignee set to Dmitry Dulepov
- Target version set to 1.1.2
This problem seems to be fixed in trunk, see here: http://forge.typo3.org/projects/extension-t3blog/repository/revisions/47335