Change customer active flag to default to true #33

This commit is contained in:
Kendrick Chan 2018-03-01 04:06:52 +08:00
parent 6011902239
commit d942299be1

View file

@ -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()