Yup, that is a bug that is fixed in the as yet unpublished v.98. There is a "<" that should be a "<="
../PATH TO YOUR STORE/includes/classes/class.productauction.php
Line 27
Change
WHERE auction_closed = 'N' AND CURDATE() > bid_expire_date or (bid_expire_hour < " . date('H') . " and bid_expire_date = CURDATE() and auction_closed = 'N')";
TO:
WHERE auction_closed = 'N' AND (CURDATE() > bid_expire_date) or (bid_expire_hour <= " . date('H') . " and bid_expire_date = CURDATE() and auction_closed = 'N')";
Cheers!
AHB
Bookmarks