summaryrefslogtreecommitdiff
path: root/Mailman/HTMLFormatter.py
diff options
context:
space:
mode:
authorbwarsaw2001-03-03 05:09:23 +0000
committerbwarsaw2001-03-03 05:09:23 +0000
commit9bb2cca69e08380ad0d8fb90342622f33bae264d (patch)
treefbe5d9526748e556ec97e6741a2630e36eb9d020 /Mailman/HTMLFormatter.py
parentbdd393c6f1947e63fc740d34f904d73e0887e1a8 (diff)
downloadmailman-9bb2cca69e08380ad0d8fb90342622f33bae264d.tar.gz
mailman-9bb2cca69e08380ad0d8fb90342622f33bae264d.tar.zst
mailman-9bb2cca69e08380ad0d8fb90342622f33bae264d.zip
Diffstat (limited to 'Mailman/HTMLFormatter.py')
-rw-r--r--Mailman/HTMLFormatter.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Mailman/HTMLFormatter.py b/Mailman/HTMLFormatter.py
index a6c53446d..9fd04d231 100644
--- a/Mailman/HTMLFormatter.py
+++ b/Mailman/HTMLFormatter.py
@@ -101,16 +101,15 @@ class HTMLFormatter:
else:
concealed = ""
ObscureEmail = Utils.ObscureEmail
- options_url = self.GetScriptURL('options')
disdel = mm_cfg.DisableDelivery
items = []
for person in people:
id = ObscureEmail(person)
+ url = self.GetOptionsURL(person)
if self.obscure_addresses:
showing = ObscureEmail(person, for_text=1)
else:
showing = person
- url = "%s/%s" % (options_url, id)
got = Link(url, showing)
if self.GetUserOption(person, disdel):
got = Italic("(", got, ")")