Bug #19828 ยป bug_10143_spamprotectCaseInsensitive.patch
typo3/sysext/cms/tslib/class.tslib_content.php (working copy) | ||
---|---|---|
$lastDotLabel = $lastDotLabel ? $lastDotLabel : '(dot)';
|
||
$spamProtectedMailAddress = preg_replace('/\.([^\.]+)$/', $lastDotLabel.'$1', $spamProtectedMailAddress);
|
||
}
|
||
$linktxt = str_replace($mailAddress, $spamProtectedMailAddress, $linktxt);
|
||
$linktxt = str_ireplace($mailAddress, $spamProtectedMailAddress, $linktxt);
|
||
}
|
||
} else {
|
||
$mailToUrl = $GLOBALS['TSFE']->absRefPrefix.$GLOBALS['TSFE']->config['mainScript'].$initP.'&jumpurl='.rawurlencode($mailToUrl).$GLOBALS['TSFE']->getMethodUrlIdToken;
|