Hi BlessIsaacola,

Originally Posted by
BlessIsaacola
Although this mod works fine it's generating an error as well:
PHP Warning: mktime() expects parameter 1 to be long, string given in /admin/stats_recover_cart_sales.php on line 30
Line 30 =
PHP Code:
return date(DATE_FORMAT, mktime('', '', '', $month, $day, $year));
Replace it by
PHP Code:
return date(DATE_FORMAT, mktime(0, 0, 0, $month, $day, $year));

Originally Posted by
BlessIsaacola
I also get this error if the attribute is set to true under the configurations for Recover Cart:
[error] PHP Fatal error: Cannot use object of type queryFactoryResult as array in /admin/recover_cart_sales.php on line 481
Line 481 =
PHP Code:
$prodAttribs .= '<small><i> - ' . $attribrecs->fields['poname'] . ' ' .
Replace it by
PHP Code:
$prodAttribs .= '<small><i> - ' . $attribrecs->fields['poname'] . ' ' . $attribrecs->fields['povname'] . '</i></small><br />';
Bookmarks