From 99f679493b25b9b0ec11a65d126dc6edb98b82db Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sun, 19 Jan 2020 19:51:40 +0100 Subject: [PATCH] Fix search --- htdocs/compta/bank/bankentries_list.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/compta/bank/bankentries_list.php b/htdocs/compta/bank/bankentries_list.php index e56b514f7a9..db9f9443f0e 100644 --- a/htdocs/compta/bank/bankentries_list.php +++ b/htdocs/compta/bank/bankentries_list.php @@ -578,7 +578,7 @@ if (!empty($search_type)) $mode_balance_ok = false; if (!empty($search_debit)) $mode_balance_ok = false; if (!empty($search_credit)) $mode_balance_ok = false; if (!empty($search_thirdparty)) $mode_balance_ok = false; -if (!empty($search_conciliated)) $mode_balance_ok = false; +if ($search_conciliated != '') $mode_balance_ok = false; if (!empty($search_num_releve)) $mode_balance_ok = false; $sql .= $db->plimit($limit + 1, $offset);