Modify ↓
Opened 15 years ago
Closed 15 years ago
#7585 closed defect (fixed)
[Patch] URLs not parsable in wiki plain text emails
| Reported by: | robrien | Owned by: | Robert Corsaro |
|---|---|---|---|
| Priority: | normal | Component: | AnnouncerPlugin |
| Severity: | normal | Keywords: | |
| Cc: | Trac Release: | 0.11 |
Description
The URL supplied by the wiki_email_plaintext.txt template aren't parsable by MUA some MUAs.
Simple patch follows:
--- a/announcer/templates/wiki_email_plaintext.txt
+++ b/announcer/templates/wiki_email_plaintext.txt
@@ -9,6 +9,6 @@ ${diff}
{% when action == "deleted" %} * The '${page.name}' has been deleted. {% end %}\
{% end %}\
--
-Page URL: <URL:${page_link}>
-${project_name} <URL:${project_link}>
+Page URL: <${page_link}>
+${project_name} URL: <${project_link}>
${project_desc}
Attachments (0)
Change History (2)
comment:1 Changed 15 years ago by
| Summary: | URLs not parsable in wiki plain text emails → [Patch] URLs not parsable in wiki plain text emails |
|---|
comment:2 Changed 15 years ago by
| Resolution: | → fixed |
|---|---|
| Status: | new → closed |
Note: See
TracTickets for help on using
tickets.



(In [8866]) Fixes links in emails
Fixes #7585 Thanks robrien!