diff options
| author | bwarsaw | 2002-02-23 06:53:53 +0000 |
|---|---|---|
| committer | bwarsaw | 2002-02-23 06:53:53 +0000 |
| commit | e4622f59e317754e6f22faae45570e71358f6104 (patch) | |
| tree | 4cf50b9ec58a1d7a63812f82c2ed956b6b9b7c73 /Mailman/Gui/Digest.py | |
| parent | 06dc243c44509f968a88dec8dc7a16c7ab24cfa9 (diff) | |
| download | mailman-e4622f59e317754e6f22faae45570e71358f6104.tar.gz mailman-e4622f59e317754e6f22faae45570e71358f6104.tar.zst mailman-e4622f59e317754e6f22faae45570e71358f6104.zip | |
Diffstat (limited to 'Mailman/Gui/Digest.py')
| -rw-r--r-- | Mailman/Gui/Digest.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Mailman/Gui/Digest.py b/Mailman/Gui/Digest.py index 326f62f50..3e5a0d261 100644 --- a/Mailman/Gui/Digest.py +++ b/Mailman/Gui/Digest.py @@ -20,6 +20,9 @@ from Mailman import mm_cfg from Mailman import Utils from Mailman.i18n import _ +# Intra-package import +from Mailman.Gui.NonDigest import handle_form + class Digest: @@ -126,3 +129,7 @@ class Digest: ## ]) return info + + def HandleForm(self, mlist, cgidata, doc): + for attr in ('digest_header', 'digest_footer'): + handle_form(mlist, attr, cgidata, doc, 0) |
