Skip to content

Commit 301eee6

Browse files
authored
Merge pull request metacpan#2238 from ThisUsedToBeAnEmail/ISSUE-2237
mailto link: Email address is ARRAY(...)
2 parents 4188bd7 + e898af2 commit 301eee6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

root/inc/notification.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@
3131
END;
3232
IF NOTIFICATION.has_email;
3333
NOTIFICATION.mailto = MAILTO(
34-
(NOTIFICATION.email || author.email),
34+
(NOTIFICATION.email || author.email.0 || author.email),
3535
(NOTIFICATION.title _ ' <' _ NOTIFICATION.module _ '>') | url,
36-
NOTIFICATION.body((NOTIFICATION.name || author.name), NOTIFICATION.module) | url
36+
NOTIFICATION.body((NOTIFICATION.name || author.asciiname || author.name), NOTIFICATION.module) | url
3737
);
3838
END;
3939
%>

0 commit comments

Comments
 (0)