From acafdd29a711ba723c29091dc14dec290b38b7d8 Mon Sep 17 00:00:00 2001 From: Maxime Bourget Date: Mon, 6 May 2013 21:01:27 +0100 Subject: [PATCH] Fix sort not working if customer id in URL. --- order_lines_view.php | 1 + 1 file changed, 1 insertion(+) diff --git a/order_lines_view.php b/order_lines_view.php index 2b53170..d289213 100644 --- a/order_lines_view.php +++ b/order_lines_view.php @@ -44,6 +44,7 @@ start_row(); if(!isset($_POST['customer_id'])) { if(isset($_GET['customer_id'])) { $customer_id = $_GET['customer_id']; + $_POST['customer_id'] = $customer_id; } else $customer_id = null; -- 2.30.2