2008-11-25 Steffen Kamper <info@sk-typo3.de>
- * Fixed bug 8561 Checkboxes and labels are aligned badly if in one line
+ * Fixed bug #9725: double enquote in t3lib_htmlmail of returnPath
+
+2008-11-25 Steffen Kamper <info@sk-typo3.de>
+
+ * Fixed bug #8561 Checkboxes and labels are aligned badly if in one line
2008-11-24 Dmitry Dulepov <dmitry@typo3.org>
// On windows the -f flag is not used (specific for Sendmail and Postfix),
// but instead the php.ini parameter sendmail_from is used.
- $returnPath = (strlen($this->returnPath) > 0) ? '-f "' . escapeshellarg($this->returnPath) . '"' : '';
+ $returnPath = (strlen($this->returnPath) > 0) ? '-f ' . escapeshellarg($this->returnPath) : '';
if($this->returnPath) {
@ini_set('sendmail_from', t3lib_div::normalizeMailAddress($this->returnPath));
}
include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['t3lib/class.t3lib_htmlmail.php']);
}
-?>
\ No newline at end of file
+?>