Current download location is http://www.zen-cart.com/downloads.php?do=file&id=1309 listed under the Product Types category.
I think I just found another bug. Around line 62 of the original file is:
PHP Code:
if ($prodincase > 0 && $bigcase > 0) {
if($prodincase % $bigcase != 0 && $prodincase != $smallcase) {
$_SESSION['valid_to_checkout'] = false;
$messageStack->add('shopping_cart', sprintf(TEXT_ORDER_UNDER_MIN_AMOUNT, $bigcase, $smallcase) . '<br />', 'caution');
}
}
Which I've changed to:
PHP Code:
$morethanbigcase = $prodincase % $bigcase;
if ($prodincase > 0 && $bigcase > 0) {
if($morethanbigcase != 0 && $morethanbigcase != $smallcase) {
$_SESSION['valid_to_checkout'] = false;
$messageStack->add('shopping_cart', sprintf(TEXT_ORDER_UNDER_MIN_AMOUNT, $bigcase, $smallcase) . '<br />', 'caution');
}
}