Index: t3lib/utility/class.t3lib_utility_mail.php =================================================================== --- t3lib/utility/class.t3lib_utility_mail.php (revision 7360) +++ t3lib/utility/class.t3lib_utility_mail.php (working copy) @@ -40,7 +40,7 @@ /** * Proxy for the PHP mail() function. Adds possibility to hook in and send the mails in a different way. * The hook can be used by adding function to the configuration array: - * $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/utility/class.t3lib_utility_mail.php']['substitudeMailDelivery'] + * $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/utility/class.t3lib_utility_mail.php']['substituteMailDelivery'] * * @param string Email address to send to. * @param string Subject line, non-encoded. (see ) @@ -62,7 +62,7 @@ 'additionalParameters' => $additionalParameters, ); $fakeThis = FALSE; - foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/utility/class.t3lib_utility_mail.php']['substituteMailDelivery'] as $hookMethod) { + foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/utility/class.t3lib_utility_mail.php']['substituteMailDelivery'] as $hookMethod) { $success = $success && t3lib_div::callUserFunction($hookMethod, $parameters, $fakeThis); } } else {