diff options
-rw-r--r-- | Mailman/Archiver/HyperArch.py | 4 | ||||
-rwxr-xr-x | NEWS | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/Mailman/Archiver/HyperArch.py b/Mailman/Archiver/HyperArch.py index 4d95c5ab..9b1df75a 100644 --- a/Mailman/Archiver/HyperArch.py +++ b/Mailman/Archiver/HyperArch.py @@ -1,4 +1,4 @@ -# Copyright (C) 1998-2010 by the Free Software Foundation, Inc. +# Copyright (C) 1998-2014 by the Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -271,6 +271,8 @@ class Article(pipermail.Article): if result: i = result.end(0) self.subject = self.subject[i:] + if self.subject == '': + self.subject = _('No subject') else: i = -1 # Useful to keep around @@ -33,6 +33,10 @@ Here is a history of user visible changes to Mailman. Bug fixes and other patches + - Fixed an archiving bug that would cause messages with 'Subject: Re:' + only to be indexed in the archives without a link to the message. + (LP: #1388614) + - The vette log entry for a message discarded by a handler now includes the list name and the name of the handler. (LP: #558096) |