While I'm on a roll ... the module isn't PHP 5.3+ ready as /YOUR_ADMIN/recover_cart_sales.php still uses ereg_replace and contains a short-open tag. Change line #81 from
Code:
return ereg_replace('2037' . '$', $year, date(DATE_FORMAT, mktime(0, 0, 0, $month, $day, 2037))); /*lat9-c*/
to
Code:
return preg_replace('/2037$/', $year, date(DATE_FORMAT, mktime(0, 0, 0, $month, $day, 2037))); /*lat9-c*/
and line #164 from
Code:
<td class="pageHeading" align="left" colspan=6><? echo HEADING_EMAIL_SENT; /*lat9-c*/ ?></td>
to
Code:
<td class="pageHeading" align="left" colspan=6><?php echo HEADING_EMAIL_SENT; /*lat9-c*/ ?></td>