diff options
Diffstat (limited to '')
-rw-r--r-- | atom.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/atom.c b/atom.c index 3ecebbc..ddfb3f6 100644 --- a/atom.c +++ b/atom.c @@ -38,7 +38,7 @@ static char *atomID(const struct Envelope *envelope) { { "messageID", envelope->messageID }, {0}, }; - return templateURL("mid:[messageID]", vars); + return templateString("mid:[messageID]", vars, escapeURL); } static int atomAuthor(FILE *file, struct Address addr) { @@ -63,7 +63,7 @@ static char *atomEntryURL(const struct Envelope *envelope) { { "type", "mbox" }, {0}, }; - return templateURL("/" PATH_MESSAGE, vars); + return templateString("/" PATH_MESSAGE, vars, escapeURL); } static const char *atomUpdated(time_t time) { @@ -123,7 +123,7 @@ static char *atomThreadURL(const struct Envelope *envelope, const char *type) { { "type", type }, {0}, }; - return templateURL("/" PATH_THREAD, vars); + return templateString("/" PATH_THREAD, vars, escapeURL); } int atomThreadOpen(FILE *file, const struct Envelope *envelope) { |