Skip to content

Commit

Permalink
fixed currency refresh
Browse files Browse the repository at this point in the history
  • Loading branch information
andr11b committed May 29, 2024
1 parent d9bbf35 commit 014aa3d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions admin/controller/localisation/currency.php
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,16 @@ public function refresh() {

$this->session->data['success'] = $this->language->get('text_success');

$url = '';

if (isset($this->request->get['sort'])) {
$url .= '&sort=' . $this->request->get['sort'];
}

if (isset($this->request->get['order'])) {
$url .= '&order=' . $this->request->get['order'];
}

if (isset($this->request->get['page'])) {
$url .= '&page=' . $this->request->get['page'];
}
Expand Down
File renamed without changes.

0 comments on commit 014aa3d

Please sign in to comment.