From 3be57ffb66e4aea7b5d723bf35de0c72863e529b Mon Sep 17 00:00:00 2001 From: jekkos Date: Sat, 18 Aug 2018 00:08:26 +0200 Subject: [PATCH] Fix config screen (#68) --- application/controllers/Config.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/controllers/Config.php b/application/controllers/Config.php index 72855b6a1..30543ce8c 100644 --- a/application/controllers/Config.php +++ b/application/controllers/Config.php @@ -299,8 +299,8 @@ class Config extends Secure_Controller 'suggestions_second_column' => $this->input->post('suggestions_second_column'), 'suggestions_third_column' => $this->input->post('suggestions_third_column'), 'giftcard_number' => $this->input->post('giftcard_number'), - 'derive_sale_quantity' => $this->input->post('derive_sale_quantity') != NULL - 'multi_pack_enabled' => $this->input->post('multi_pack_enabled') != NULL, + 'derive_sale_quantity' => $this->input->post('derive_sale_quantity') != NULL, + 'multi_pack_enabled' => $this->input->post('multi_pack_enabled') != NULL ); $this->Module->set_show_office_group($this->input->post('show_office_group') != NULL);