Re: Simple way to add new order statuses
Quote:
Originally Posted by finestshops
same procedure
|
Looking at the code in func.order.php in 4.5.5 they seem to us status "X" for x_payments and the status validity checking is done differently for X-payments
(line 1686)
if (!empty($active_modules['XOrder_Statuses'])) {
if (!func_orderstatuses_is_valid($status)) {
return;
}
} else {
$allowed_order_status = 'IQPBDFCA';
if (!strstr($allowed_order_status, $status))
return;
}
I don't know where func_orderstatus_is_valid gets defined, but I guess if you use x-payments you may need to dig a bit further? Also assume you should not use Status=X for a user status.
__________________
X-Cart 4.4.5 Live
X-cart 4.5.5 Live
|