I figured it out.
The problem was that there was a missing parameter in the super_orders_funtctions.php file.
Around lines 409 - 412 you'll find:
PHP Code:
$db->Execute("UPDATE " . TABLE_ORDERS . " SET
orders_status = '" . $new_status . "'
WHERE orders_id = '" . (int)$oID . "'");
}
Change that to:
PHP Code:
$db->Execute("UPDATE " . TABLE_ORDERS . " SET
orders_status = '" . $new_status . "', last_modified = now()
WHERE orders_id = '" . (int)$oID . "'");
}
And you are all set. This must have been altered in an update release somewhere because it was working in previous versions I had.
Bookmarks