Bug in Email – Linktexts
-
File: /scr/mail.php
in lines 542, 543 and 593,594 the Linktext is missing$params[‘#link_cancel#’] = $this->generate_link_element($app_array, ‘cancel’);
$params[‘#link_confirm#’] = $this->generate_link_element($app_array, ‘confirm’);Correctly, it should be like in lines 456 and 457:
$links[‘#link_cancel#’] = $this->generate_link_element($raw_data, ‘cancel’, __(‘Cancel appointment’, ‘easy-appointments’));
$links[‘#link_confirm#’] = $this->generate_link_element($raw_data, ‘confirm’, __(‘Confirm appointment’, ‘easy-appointments’));This causes the (mainly problematic in the function send_status_change_mail() ) link to show the link_url as linktext.
The topic ‘Bug in Email – Linktexts’ is closed to new replies.