summaryrefslogtreecommitdiff
path: root/cgi/edithtml
diff options
context:
space:
mode:
authormailman1998-03-05 19:59:09 +0000
committermailman1998-03-05 19:59:09 +0000
commit98cf560f0161f8d9ee94a14d0ae6a49b3169cd5e (patch)
tree81d3bcf5eb2794cd9ad27b8633f44c9fbe6820aa /cgi/edithtml
parent4e92044311ae5256e89d91f0ea5143a443296329 (diff)
downloadmailman-98cf560f0161f8d9ee94a14d0ae6a49b3169cd5e.tar.gz
mailman-98cf560f0161f8d9ee94a14d0ae6a49b3169cd5e.tar.zst
mailman-98cf560f0161f8d9ee94a14d0ae6a49b3169cd5e.zip
Normalize the list name to lower case. (Email doesn't care, but
the web - URLs - does.)
Diffstat (limited to 'cgi/edithtml')
-rwxr-xr-xcgi/edithtml2
1 files changed, 1 insertions, 1 deletions
diff --git a/cgi/edithtml b/cgi/edithtml
index 1764492a5..75ba77929 100755
--- a/cgi/edithtml
+++ b/cgi/edithtml
@@ -30,7 +30,7 @@ if len(list_info) < 1:
print doc.Format()
sys.exit(0)
-list_name = list_info[0]
+list_name = string.lower(list_info[0])
try:
list = maillist.MailList(list_name)