Hi,

The highest bid does not show on the auction form. The cause is a bug in a query at the nodeapi hook

$highest_bid_data = db_query("SELECT MAX(amount) AS amount, bid, uid FROM {uc_auction_bids} WHERE nid = '%s'" , $node->nid);
// which is a workaround from the start.

Change the query to this
SELECT MAX(amount) AS amount /*, uid, bid */ FROM {uc_auction_bids} WHERE ....

CommentFileSizeAuthor
#1 patch_1478568.diff778 byteserlendoos

Comments

erlendoos’s picture

StatusFileSize
new778 bytes