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'
This commit is contained in:
wolfygit 2020-01-18 02:28:36 +01:00 committed by Alex Tselegidis
parent 3458744933
commit 9297681f18
1 changed files with 2 additions and 2 deletions

View File

@ -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('');
}