aboutsummaryrefslogtreecommitdiffstats
path: root/Mailman/Archiver/HyperArch.py
diff options
context:
space:
mode:
authorMark Sapiro <mark@msapiro.net>2013-07-12 15:37:42 -0700
committerMark Sapiro <mark@msapiro.net>2013-07-12 15:37:42 -0700
commit552a3b3336b4ef8e9b309db33c8c3b2a2543ca91 (patch)
treed0b6039034ed941dab1b85087163aaa98098f1c2 /Mailman/Archiver/HyperArch.py
parent77626e68e3ad0fd5fdfa7fac5e62a4264003a03a (diff)
downloadmailman2-552a3b3336b4ef8e9b309db33c8c3b2a2543ca91.tar.gz
mailman2-552a3b3336b4ef8e9b309db33c8c3b2a2543ca91.tar.xz
mailman2-552a3b3336b4ef8e9b309db33c8c3b2a2543ca91.zip
- Added "message_id" to the interpolation dictionary for the Article.html
template. (LP: #725498)
Diffstat (limited to 'Mailman/Archiver/HyperArch.py')
-rw-r--r--Mailman/Archiver/HyperArch.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Mailman/Archiver/HyperArch.py b/Mailman/Archiver/HyperArch.py
index a7f46276..4d95c5ab 100644
--- a/Mailman/Archiver/HyperArch.py
+++ b/Mailman/Archiver/HyperArch.py
@@ -471,6 +471,7 @@ class Article(pipermail.Article):
d["email_html"] = self.quote(self.email)
d["title"] = self.quote(self.subject)
d["subject_html"] = self.quote(self.subject)
+ d["message_id"] = self.quote(self._message_id)
# TK: These two _url variables are used to compose a response
# from the archive web page. So, ...
d["subject_url"] = url_quote('Re: ' + self.subject)