diff options
| -rw-r--r-- | Mailman/HTMLFormatter.py | 4 | ||||
| -rw-r--r-- | modules/mm_html.py | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Mailman/HTMLFormatter.py b/Mailman/HTMLFormatter.py index f13fec40e..20cddd4e9 100644 --- a/Mailman/HTMLFormatter.py +++ b/Mailman/HTMLFormatter.py @@ -1,6 +1,6 @@ """Routines for presentation of list-specific HTML text.""" -__version__ = "$Revision: 415 $" +__version__ = "$Revision: 422 $" import os @@ -229,7 +229,7 @@ class HTMLFormatter: return ('<FORM Method=POST ACTION="%s">' % full_url) def FormatArchiveAnchor(self): - return '<a href="%s">' % self._base_archive_url + return '<a href="%s">' % self.GetBaseArchiveURL() def FormatFormEnd(self): return '</FORM>' diff --git a/modules/mm_html.py b/modules/mm_html.py index f13fec40e..20cddd4e9 100644 --- a/modules/mm_html.py +++ b/modules/mm_html.py @@ -1,6 +1,6 @@ """Routines for presentation of list-specific HTML text.""" -__version__ = "$Revision: 415 $" +__version__ = "$Revision: 422 $" import os @@ -229,7 +229,7 @@ class HTMLFormatter: return ('<FORM Method=POST ACTION="%s">' % full_url) def FormatArchiveAnchor(self): - return '<a href="%s">' % self._base_archive_url + return '<a href="%s">' % self.GetBaseArchiveURL() def FormatFormEnd(self): return '</FORM>' |
