summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorklm1998-12-17 01:40:41 +0000
committerklm1998-12-17 01:40:41 +0000
commit364f89e4f6298b70ca432e5f003dff767ca921ee (patch)
tree9f21b34d3f6245a84ee121b917157dd4d4074e3a
parent90b69534a532e41dfef31013846359db3e71c399 (diff)
downloadmailman-364f89e4f6298b70ca432e5f003dff767ca921ee.tar.gz
mailman-364f89e4f6298b70ca432e5f003dff767ca921ee.tar.zst
mailman-364f89e4f6298b70ca432e5f003dff767ca921ee.zip
Use OrderedList instead of UnorderedList for the list of
subscriptions, so people can, eg, see the number go down as they unsubscribe, etc.
-rw-r--r--Mailman/Cgi/handle_opts.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Cgi/handle_opts.py b/Mailman/Cgi/handle_opts.py
index 226b66611..524bd720e 100644
--- a/Mailman/Cgi/handle_opts.py
+++ b/Mailman/Cgi/handle_opts.py
@@ -160,7 +160,7 @@ exactly what happened to provoke this error.<p>'''
l.real_name)
return link
all_links = filter(None, Utils.map_maillists(optionslinks))
- items = htmlformat.UnorderedList()
+ items = htmlformat.OrderedList()
for i in all_links:
items.AddItem(i)
doc.AddItem(items)