From 293f4fe6638d7e06f81714f59991af7a14c5108a Mon Sep 17 00:00:00 2001 From: Alex Tselegidis Date: Fri, 4 Mar 2022 18:04:53 +0100 Subject: [PATCH] Add missing customer data from stripped array --- application/controllers/Appointments.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/application/controllers/Appointments.php b/application/controllers/Appointments.php index 0b762020..85955a0f 100755 --- a/application/controllers/Appointments.php +++ b/application/controllers/Appointments.php @@ -178,6 +178,8 @@ class Appointments extends EA_Controller { 'id' => $customer['id'], 'first_name' => $customer['first_name'], 'last_name' => $customer['last_name'], + 'email' => $customer['email'], + 'phone_number' => $customer['phone_number'], 'timezone' => $customer['timezone'], 'address' => $customer['address'], 'city' => $customer['city'],