Using OC 3.0.3.8 and on the admin dashboard some of the activity links are broken: https://prnt.sc/5RdTQq5JJjBW
The broken ones as far as I can see are: Login and New account register. The links point to: https://example.com/admin/affiliate_id=1
Any quick fix for this?
Thanks!
LE: I fixed it by modifying the following code:
Code: Select all
$find = array(
'customer_id=',
'order_id=',
'return_id=',
'affiliate_id='
);
Code: Select all
$replace = array(
$this->url->link('customer/customer/edit', 'user_token=' . $this->session->data['user_token'] . '&customer_id=', true),
$this->url->link('sale/order/info', 'user_token=' . $this->session->data['user_token'] . '&order_id=', true),
$this->url->link('sale/return/edit', 'user_token=' . $this->session->data['user_token'] . '&return_id=', true),
$this->url->link('customer/customer/edit', 'user_token=' . $this->session->data['user_token'] . '&customer_id=', true));