summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbwarsaw2002-08-14 23:58:02 +0000
committerbwarsaw2002-08-14 23:58:02 +0000
commit130dcd52ee5c769d0bfcf26b1903db77ecb0c4b3 (patch)
tree4c3177e55bb8f519266d1ff56f028b257a84dd48
parentca53fc9703efd477db6e68fd6c946be0bb603a74 (diff)
downloadmailman-130dcd52ee5c769d0bfcf26b1903db77ecb0c4b3.tar.gz
mailman-130dcd52ee5c769d0bfcf26b1903db77ecb0c4b3.tar.zst
mailman-130dcd52ee5c769d0bfcf26b1903db77ecb0c4b3.zip
handleForm(): A `return' should have been a `continue'. This fixes
value setting when submitting an option's details page.
-rw-r--r--Mailman/Gui/GUIBase.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Gui/GUIBase.py b/Mailman/Gui/GUIBase.py
index 6383cf131..3deb74304 100644
--- a/Mailman/Gui/GUIBase.py
+++ b/Mailman/Gui/GUIBase.py
@@ -136,7 +136,7 @@ class GUIBase:
if cgidata.has_key(uploadprop) and cgidata[uploadprop].value:
val = cgidata[uploadprop].value
elif not cgidata.has_key(property):
- return
+ continue
elif isinstance(cgidata[property], ListType):
val = [x.value for x in cgidata[property]]
else: