about summary refs log tree commit diff
path: root/html.c
diff options
context:
space:
mode:
Diffstat (limited to 'html.c')
-rw-r--r--html.c4
1 files changed, 2 insertions, 2 deletions
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);