Spf
thx again for the report.
try this patch
responsehandler.php line 284
change
PHP Code:
$coupon = $db->Execute("select * from " . TABLE_COUPONS . " where coupon_code = '" . zen_db_input($curr_code['code']) . "' and coupon_type != 'G'");
with
PHP Code:
$coupon = $db->Execute("select * from " . TABLE_COUPONS . " where coupon_code = '" . zen_db_input($curr_code['code']) . "' and coupon_type != 'G' and coupon_active = 'Y' and coupon_expire_date >= now() and coupon_start_date < now()");
tell us if it worked, iv just tried with the demo site, and expired coupons, not yet available ones and not active one are not more valid coupons.
hope this helps!
thank you very much
ropu
Bookmarks