diff options
| author | tkikuchi | 2005-09-21 04:25:00 +0000 |
|---|---|---|
| committer | tkikuchi | 2005-09-21 04:25:00 +0000 |
| commit | b27b58acd88bb4b389c63d0e6c0a449aa42998ee (patch) | |
| tree | 269714dadc04e877e9d7af94f86de0066ced2bed /Mailman/Gui/Privacy.py | |
| parent | a38a25dc03f2553779056bf3b5fbad0011e8a1ed (diff) | |
| download | mailman-b27b58acd88bb4b389c63d0e6c0a449aa42998ee.tar.gz mailman-b27b58acd88bb4b389c63d0e6c0a449aa42998ee.tar.zst mailman-b27b58acd88bb4b389c63d0e6c0a449aa42998ee.zip | |
Diffstat (limited to 'Mailman/Gui/Privacy.py')
| -rw-r--r-- | Mailman/Gui/Privacy.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Mailman/Gui/Privacy.py b/Mailman/Gui/Privacy.py index 1ae2699a7..302c62d2c 100644 --- a/Mailman/Gui/Privacy.py +++ b/Mailman/Gui/Privacy.py @@ -443,6 +443,10 @@ class Privacy(GUIBase): # _getValidValue() will essentially ignore any hdrfilter_* form variables. # TK: we should call this function only in subcat == 'spam' def _handleForm(self, mlist, category, subcat, cgidata, doc): + # TK: If there is no hdrfilter_* in cgidata, we should not touch + # the header filter rules. + if not cgidata.has_key('hdrfilter_rebox_01'): + return # First deal with rules = [] # We start i at 1 and keep going until we no longer find items keyed |
