From 1ad844fe741dff7fb3fa337d146c2f99e07c933d Mon Sep 17 00:00:00 2001 From: FrancescoUK Date: Thu, 9 Jun 2016 19:31:41 +0100 Subject: [PATCH] Fixed Customer Account # issue (#633) --- application/controllers/Customers.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/controllers/Customers.php b/application/controllers/Customers.php index 0cf301800..6e4f4b05b 100644 --- a/application/controllers/Customers.php +++ b/application/controllers/Customers.php @@ -131,7 +131,7 @@ class Customers extends Persons { $exists = $this->Customer->account_number_exists($this->input->post('account_number'), $this->input->post('person_id')); - echo !$exists ? 'TRUE' : 'FALSE'; + echo !$exists ? 'true' : 'false'; } /*