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:
parent
3458744933
commit
9297681f18
1 changed files with 2 additions and 2 deletions
|
@ -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('');
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue