This is just an update to the installation-file, no new files uploaded.

The last time I forgot to insert the function tep_end_auction_valid() to the installation file at catalog/includes/function/general.php

Insert the following code just before ?>

function tep_end_auction_valid() {
$auction_cfg_end_query = mysql_fetch_object(tep_db_query('select configuration_value from ' . TABLE_CONFIGURATION . ' where configuration_key = 'AUCTION_END_OPTIONS''));
if ($auction_cfg_end_query->configuration_value == 1) {
$auction_cfg_end = '' . MESSAGE_AUCTION_OVER . '';
}
return $auction_cfg_end;
}


More...