Remove escaping character typo (#7311)

escaping character not needed on the template_subject
This commit is contained in:
chansizzle 2025-03-13 11:30:42 -06:00 committed by GitHub
parent b0a630e80a
commit e6bfaf21ee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -510,7 +510,7 @@
$array['email_templates'][$x]['template_language'] = 'en-gb'; $array['email_templates'][$x]['template_language'] = 'en-gb';
$array['email_templates'][$x]['template_category'] = 'plugin'; $array['email_templates'][$x]['template_category'] = 'plugin';
$array['email_templates'][$x]['template_subcategory'] = 'emergency'; $array['email_templates'][$x]['template_subcategory'] = 'emergency';
$array['email_templates'][$x]['template_subject'] = '\${event}'; $array['email_templates'][$x]['template_subject'] = '${event}';
$array['email_templates'][$x]['template_body'] = "<html>\n"; $array['email_templates'][$x]['template_body'] = "<html>\n";
$array['email_templates'][$x]['template_body'] .= "<body>\n"; $array['email_templates'][$x]['template_body'] .= "<body>\n";
$array['email_templates'][$x]['template_body'] .= "<strong>From:</strong> \${caller_id_name} <a href=\"tel:\${caller_id_number}\">\${caller_id_number}</a><br />\n"; $array['email_templates'][$x]['template_body'] .= "<strong>From:</strong> \${caller_id_name} <a href=\"tel:\${caller_id_number}\">\${caller_id_number}</a><br />\n";
@ -530,7 +530,7 @@
$array['email_templates'][$x]['template_language'] = 'en-us'; $array['email_templates'][$x]['template_language'] = 'en-us';
$array['email_templates'][$x]['template_category'] = 'plugin'; $array['email_templates'][$x]['template_category'] = 'plugin';
$array['email_templates'][$x]['template_subcategory'] = 'emergency'; $array['email_templates'][$x]['template_subcategory'] = 'emergency';
$array['email_templates'][$x]['template_subject'] = '\${event}'; $array['email_templates'][$x]['template_subject'] = '${event}';
$array['email_templates'][$x]['template_body'] = "<html>\n"; $array['email_templates'][$x]['template_body'] = "<html>\n";
$array['email_templates'][$x]['template_body'] .= "<body>\n"; $array['email_templates'][$x]['template_body'] .= "<body>\n";
$array['email_templates'][$x]['template_body'] .= "<strong>From:</strong> \${caller_id_name} <a href=\"tel:\${caller_id_number}\">\${caller_id_number}</a><br />\n"; $array['email_templates'][$x]['template_body'] .= "<strong>From:</strong> \${caller_id_name} <a href=\"tel:\${caller_id_number}\">\${caller_id_number}</a><br />\n";