Bug #19775
closedInstall Tool send mail does not use global TYPO3_CONF_VARS, XCLASS of htmlmail not working
0%
Description
While i was working on the problem with sending mail in the install tool with stoefln_pear_mail i found that the check_mail function does not use the global variable TYPO3_CONF_VARS because of a missing 'global $TYPO3_CONF_VARS;'
The problem occures because the function check_mail in class.tx_install.php around line 1642 does a "require", so the XCLASSing does not work, because the $TYPO3_CONF_VARS is not in global scope.
Fixing was easy by providing the 'global $TYPO3_CONF_VARS;' right after the function header. The XCLASSing was working after this fix
(issue imported from #M10072)
Updated by Alexander Opitz over 11 years ago
- Status changed from New to Needs Feedback
- Target version deleted (
0) - TYPO3 Version set to 4.2
The issue is very old, does this issue exists in newer versions of TYPO3 CMS (4.5 or 6.1)?
Updated by Wouter Wolters over 11 years ago
- Status changed from Needs Feedback to Resolved
This class does not exists anymore in branches that are supported.