Ryk,
In comparing the code I see that from line 181 to 194 in the MOD files there was a difference between the mod and zc 1.3.7.... (see below) which I copied over into the zencart file... is this what you are referring to?
*******************************
}
}
if (($action == 'edit') && isset($_GET['oID'])) {
$oID = zen_db_prepare_input($_GET['oID']);
$orders = $db->Execute("select orders_id from " . TABLE_ORDERS . "
where orders_id = '" . (int)$oID . "'");
$order_exists = true;
if ($orders->RecordCount() <= 0) {
$order_exists = false;
$messageStack->add(sprintf(ERROR_ORDER_DOES_NOT_EXIST, $oID), 'error');
****************************
Judy