From 095cc3c2fe0a8bf6bc5191db8b92325cb131fe04 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Mon, 13 Apr 2020 15:22:36 -0400 Subject: Rename pathMangle to pathSafe Mangle is a rude word. --- html.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'html.c') diff --git a/html.c b/html.c index 1d28541..d6bf723 100644 --- a/html.c +++ b/html.c @@ -79,7 +79,7 @@ int htmlMessageHead(FILE *file, const struct Envelope *envelope) { { "re", (strncmp(envelope->subject, "Re: ", 4) ? "Re: " : "") }, { "subject", envelope->subject }, { "messageID", envelope->messageID }, - { "pathID", pathMangle(envelope->messageID) }, + { "pathID", pathSafe(envelope->messageID) }, {0}, }; char *fragment = templateURL("#[messageID]", urlVars); @@ -129,7 +129,7 @@ int htmlMessageTail(FILE *file) { int htmlThreadHead(FILE *file, const struct Envelope *envelope) { struct Variable urlVars[] = { - { "pathID", pathMangle(envelope->messageID) }, + { "pathID", pathSafe(envelope->messageID) }, {0}, }; char *path = templateURL("[pathID]", urlVars); -- cgit 1.4.1