diff options
| author | mailman | 1998-03-05 19:59:09 +0000 |
|---|---|---|
| committer | mailman | 1998-03-05 19:59:09 +0000 |
| commit | 98cf560f0161f8d9ee94a14d0ae6a49b3169cd5e (patch) | |
| tree | 81d3bcf5eb2794cd9ad27b8633f44c9fbe6820aa /cgi/edithtml | |
| parent | 4e92044311ae5256e89d91f0ea5143a443296329 (diff) | |
| download | mailman-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-x | cgi/edithtml | 2 |
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) |
