From 4a71216dc2469b9d5586ef63a5ba9ff5e3c444a9 Mon Sep 17 00:00:00 2001 From: Mark Sapiro Date: Tue, 4 Nov 2014 14:59:40 -0800 Subject: Fixed an archiving bug that would cause messages with 'Subject: Re:' only to be indexed in the archives without a link to the message. --- Mailman/Archiver/HyperArch.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Mailman') 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 -- cgit v1.2.3