Quote Originally Posted by mooncavecrystals View Post
ok, heres a strange question for ya :) When i set the time for auction to expire...say 11am my time.....it does not actually expire until one hour later and then the email saying you have won the auction comes one hour after that.

Anyway I can fix??

Thanks! the more I work with this mod the more I love it :)
B....you da man!!
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