From 6446343e1bbb94ba3d492b26d45b41007164e676 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Wed, 10 Oct 2018 13:05:19 +0200 Subject: [PATCH] Fix sort lost --- htdocs/compta/bank/bankentries_list.php | 1 + 1 file changed, 1 insertion(+) diff --git a/htdocs/compta/bank/bankentries_list.php b/htdocs/compta/bank/bankentries_list.php index b386340d75e..f0c41b1ebb1 100644 --- a/htdocs/compta/bank/bankentries_list.php +++ b/htdocs/compta/bank/bankentries_list.php @@ -261,6 +261,7 @@ if ((GETPOST('confirm_savestatement','alpha') || GETPOST('confirm_reconcile','al if ($search_type) $param.='&search_type='.urlencode($search_type); if ($search_debit) $param.='&search_debit='.urlencode($search_debit); if ($search_credit) $param.='&search_credit='.urlencode($search_credit); + $param.='&sortfield='.urlencode($sortfield).'&sortorder='.urlencode($sortorder); header('Location: '.$_SERVER["PHP_SELF"].'?'.$param); // To avoid to submit twice and allow the back button exit; }