From 9297681f18a042c527d28c80348d55a608125832 Mon Sep 17 00:00:00 2001 From: wolfygit Date: Sat, 18 Jan 2020 02:28:36 +0100 Subject: [PATCH] Fix mail title Fix the provider's modification mail title . As the modification is made by the provider from the backend, his mail title has to be 'appointment_changes_saved' and the customer mail title 'appointment_details_changed' --- src/application/controllers/Backend_api.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/application/controllers/Backend_api.php b/src/application/controllers/Backend_api.php index 1ed668c4..f718e978 100755 --- a/src/application/controllers/Backend_api.php +++ b/src/application/controllers/Backend_api.php @@ -366,9 +366,9 @@ class Backend_api extends CI_Controller { } else { - $customer_title = new Text($this->lang->line('appointment_changes_saved')); + $customer_title = new Text($this->lang->line('appointment_details_changed')); $customer_message = new Text(''); - $provider_title = new Text($this->lang->line('appointment_details_changed')); + $provider_title = new Text($this->lang->line('appointment_changes_saved')); $provider_message = new Text(''); }