The fix for issue #2979903 is wrong.
It should be
'description' => t('You need to <a href="@url">add a SendGrid API Secret Key</a> for Drupal to be able to deliver mail through SendGrid Integration.', [
'@url' => url('admin/config/services/sendgrid'),
]),
instead of
'description' => t('You need to <a href="@url">add a SendGrid API Secret Key</a> for Drupal to be able to deliver mail through SendGrid Integration.', [
'@url' => l(t('SendGrid'), 'admin/config/services/sendgrid'),
]),
as you are using @url inside of HREF already, the l() function will create a full tag.
Comments
Comment #2
yang_yi_cn commentedpatch here (against 7.x-1.x dev)
Comment #3
i-trokhanenkoI get the same issue. Will test with patch #2.
Comment #4
i-trokhanenkoPatch #2 works well for me. Making RTBC.
Thanks!
Comment #6
perignon commentedThanks for the patch and the team effort to test. I just committed the change the dev.