diff options
author | Mark Sapiro <mark@msapiro.net> | 2013-07-12 15:37:42 -0700 |
---|---|---|
committer | Mark Sapiro <mark@msapiro.net> | 2013-07-12 15:37:42 -0700 |
commit | 552a3b3336b4ef8e9b309db33c8c3b2a2543ca91 (patch) | |
tree | d0b6039034ed941dab1b85087163aaa98098f1c2 /Mailman/Archiver/HyperArch.py | |
parent | 77626e68e3ad0fd5fdfa7fac5e62a4264003a03a (diff) | |
download | mailman2-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.py | 1 |
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) |