commerce.patch
| typo3conf/ext/commerce/pi3/class.tx_commerce_pi3.php (revision ) | ||
|---|---|---|
| 1955 | 1955 |
|
| 1956 | 1956 |
$userMail = tx_commerce_div::validEmailList($userMail); |
| 1957 | 1957 |
|
| 1958 |
if ($userMail && !eregi("\r", $userMail) && !eregi("\n", $userMail)) {
|
|
| 1958 |
if ($userMail && !preg_match("/\r/", $userMail) && !preg_match("/\n/", $userMail)) {
|
|
| 1959 | 1959 |
foreach($hookObjectsArr as $hookObj) {
|
| 1960 | 1960 |
if (method_exists($hookObj, 'getUserMail')) {
|
| 1961 | 1961 |
$hookObj->getUserMail($userMail, $orderUid, $orderData); |