* Calendar/Merge: Fix {{link}} placeholder not working for HTML mails, use {{link/href}} to get a clickable link

This commit is contained in:
nathangray 2020-10-05 14:14:54 -06:00 committed by Ralf Becker
parent 2f5b514e35
commit e5789515a2

View File

@ -446,6 +446,8 @@ abstract class Merge
}
else if($matches[2][$i] == 'href')
{
// Turn on HTML style parsing or the link will be escaped
$this->parse_html_styles = true;
$link = Api\Html::a_href(Api\Html::htmlspecialchars($title), $link);
}