diff options
author | Mark Sapiro <mark@msapiro.net> | 2017-06-07 19:51:02 -0700 |
---|---|---|
committer | Mark Sapiro <mark@msapiro.net> | 2017-06-07 19:51:02 -0700 |
commit | 758366326759643af4f2e6cd48736112ff1cba88 (patch) | |
tree | dcaf124bca66e3157749ee06255de5bbf7bdc3ea | |
parent | b10ddd1173595992cd02748d8fcc633199b1b873 (diff) | |
download | mailman2-758366326759643af4f2e6cd48736112ff1cba88.tar.gz mailman2-758366326759643af4f2e6cd48736112ff1cba88.tar.xz mailman2-758366326759643af4f2e6cd48736112ff1cba88.zip |
Reverted another getfirst in the multi-value CGI defence.
-rw-r--r-- | Mailman/Cgi/options.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Cgi/options.py b/Mailman/Cgi/options.py index b638195a..93148af8 100644 --- a/Mailman/Cgi/options.py +++ b/Mailman/Cgi/options.py @@ -671,7 +671,7 @@ address. Upon confirmation, any other mailing list containing the address # Process user selected topics, but don't make the changes to the # MailList object; we must do that down below when the list is # locked. - topicnames = cgidata.getfirst('usertopic') + topicnames = cgidata.getvalue('usertopic') if topicnames: # Some topics were selected. topicnames can actually be a string # or a list of strings depending on whether more than one topic |