summaryrefslogtreecommitdiff
path: root/Mailman/HTMLFormatter.py
diff options
context:
space:
mode:
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, ")")