lat9:
Doesn't viewing that same order under the built-in Customers :: Orders exhibit the same problem, i.e. a log generated due to a no-long-present status-history definition?
Ok when checking I found a reference to Super Orders would that be causing the issue with edit orders.
Here is what the reference says in admin/invoice.php file on live site:
// BEGIN Super Orders edit
// add CC data as a line item to SO payment system
if (isset($this->info['cc_type']) && zen_not_null($this->info['cc_type']) || isset($this->info['cc_owner']) && zen_not_null($this->info['cc_owner']) || isset($this->info['cc_number']) && zen_not_null($this->info['cc_number'])) {
require(DIR_WS_CLASSES . 'super_order.php');
$so = new super_order($insert_id);
$so->cc_line_item();
}
// END Super Orders edit
On the dev site it has this reference the same file:
// BEGIN Super Orders edit
// add CC data as a line item to SO payment system
if (zen_not_null($this->info['cc_type']) || zen_not_null($this->info['cc_owner']) || zen_not_null($this->info['cc_number'])) {
require(DIR_WS_CLASSES . 'super_order.php');
$so = new super_order($insert_id);
$so->cc_line_item();
}
// END Super Orders edit
Should that be delete out of the file on the live site?