From: Ernesto Baschny Date: Mon, 23 Aug 2010 08:40:38 +0000 (+0000) Subject: Fixed bug #15526: No recipient is logged to syslog if sending of mail failed in t3lib... X-Git-Tag: TYPO3_4-5-0alpha1~34 X-Git-Url: https://git.typo3.org/Packages/TYPO3.CMS.git/commitdiff_plain/8b1920d26c80390b0a054c21fddd6b77c2b94fc8 Fixed bug #15526: No recipient is logged to syslog if sending of mail failed in t3lib_utility_Mail (Thanks to Helmut Hummel) git-svn-id: https://svn.typo3.org/TYPO3v4/Core/trunk@8643 709f56b5-9817-0410-a4d7-c38de5d9e867 --- diff --git a/ChangeLog b/ChangeLog index 6a2eac1..eaa6dca 100755 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2010-08-23 Ernesto Baschny + + * Fixed bug #15526: No recipient is logged to syslog if sending of mail failed in t3lib_utility_Mail (Thanks to Helmut Hummel) + 2010-08-22 Francois Suter * Fixed bug #15102: Scheduler: BE module does not use new skin properly (TYPO3 4.5) diff --git a/t3lib/utility/class.t3lib_utility_mail.php b/t3lib/utility/class.t3lib_utility_mail.php index 88dff14..8954690 100644 --- a/t3lib/utility/class.t3lib_utility_mail.php +++ b/t3lib/utility/class.t3lib_utility_mail.php @@ -70,7 +70,7 @@ final class t3lib_utility_Mail { } if (!$success) { - t3lib_div::sysLog('Mail to "' . $email . '" could not be sent (Subject: "' . $subject . '").', 'Core', 3); + t3lib_div::sysLog('Mail to "' . $to . '" could not be sent (Subject: "' . $subject . '").', 'Core', 3); } return $success; }