summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbwarsaw2002-01-02 02:42:59 +0000
committerbwarsaw2002-01-02 02:42:59 +0000
commitc46edeb1d2995c0d8ac6241af4bb9f795e145cb1 (patch)
tree403decb9d483511dbf99c141a5b93312928777c2
parente0a5a8513d7a99da9ff01895dd004cbf5ef0de70 (diff)
downloadmailman-c46edeb1d2995c0d8ac6241af4bb9f795e145cb1.tar.gz
mailman-c46edeb1d2995c0d8ac6241af4bb9f795e145cb1.tar.zst
mailman-c46edeb1d2995c0d8ac6241af4bb9f795e145cb1.zip
-rw-r--r--Mailman/Cgi/admindb.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/Mailman/Cgi/admindb.py b/Mailman/Cgi/admindb.py
index c574bedad..d45671cf2 100644
--- a/Mailman/Cgi/admindb.py
+++ b/Mailman/Cgi/admindb.py
@@ -1,4 +1,4 @@
-# Copyright (C) 1998,1999,2000,2001 by the Free Software Foundation, Inc.
+# Copyright (C) 1998,1999,2000,2001,2002 by the Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
@@ -629,8 +629,9 @@ def process_form(mlist, doc, cgidata):
request_id = int(k)
except ValueError:
continue
- if v not in (mm_cfg.DEFER, mm_cfg.APPROVE,
- mm_cfg.REJECT, mm_cfg.DISCARD):
+ if v not in (mm_cfg.DEFER, mm_cfg.APPROVE, mm_cfg.REJECT,
+ mm_cfg.DISCARD, mm_cfg.SUBSCRIBE, mm_cfg.UNSUBSCRIBE,
+ mm_cfg.ACCEPT, mm_cfg.HOLD):
continue
# Get the action comment and reasons if present.
commentkey = 'comment-%d' % request_id