From d942299be1d111d586275f505b868a085bb62576 Mon Sep 17 00:00:00 2001 From: Kendrick Chan Date: Thu, 1 Mar 2018 04:06:52 +0800 Subject: [PATCH] Change customer active flag to default to true #33 --- src/Entity/Customer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Entity/Customer.php b/src/Entity/Customer.php index bbd287c8..f04a794d 100644 --- a/src/Entity/Customer.php +++ b/src/Entity/Customer.php @@ -115,7 +115,7 @@ class Customer $this->flag_confirmed = false; $this->flag_mobile_app = false; - $this->flag_active = false; + $this->flag_active = true; } public function getID()