summaryrefslogtreecommitdiff
path: root/Mailman/HTMLFormatter.py
diff options
context:
space:
mode:
authorviega1998-06-03 13:13:00 +0000
committerviega1998-06-03 13:13:00 +0000
commitfd2f1bc8c9b6806d7dd32ea463b525c0f2320d35 (patch)
tree4ec67e7cdcd908cf3b737176ed5771419baf046f /Mailman/HTMLFormatter.py
parent70665f31a9b592db30c5b1c92abc72aa39abc0d2 (diff)
downloadmailman-fd2f1bc8c9b6806d7dd32ea463b525c0f2320d35.tar.gz
mailman-fd2f1bc8c9b6806d7dd32ea463b525c0f2320d35.tar.zst
mailman-fd2f1bc8c9b6806d7dd32ea463b525c0f2320d35.zip
Diffstat (limited to 'Mailman/HTMLFormatter.py')
-rw-r--r--Mailman/HTMLFormatter.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Mailman/HTMLFormatter.py b/Mailman/HTMLFormatter.py
index dcab91891..d5b971029 100644
--- a/Mailman/HTMLFormatter.py
+++ b/Mailman/HTMLFormatter.py
@@ -17,7 +17,7 @@
"""Routines for presentation of list-specific HTML text."""
-__version__ = "$Revision: 547 $"
+__version__ = "$Revision: 693 $"
import os
@@ -87,7 +87,7 @@ class HTMLFormatter:
showing = ObscureEmail(person, for_text=1)
else:
showing = person
- got = Link(os.path.join(me.GetScriptURL('options'),
+ got = Link(os.path.join(me.GetRelativeScriptURL('options'),
id), showing)
if me.GetUserOption(person, disdel):
got = Italic("(", got, ")")
@@ -261,7 +261,7 @@ class HTMLFormatter:
return container
def FormatFormStart(self, name, extra=''):
- base_url = self.GetScriptURL(name)
+ base_url = self.GetRelativeScriptURL(name)
full_url = os.path.join(base_url, extra)
return ('<FORM Method=POST ACTION="%s">' % full_url)