diff options
| author | bwarsaw | 2001-06-25 21:16:29 +0000 |
|---|---|---|
| committer | bwarsaw | 2001-06-25 21:16:29 +0000 |
| commit | 03581f28ed35f3a7ec5c0fe513662fc001b759b5 (patch) | |
| tree | 069fa96c3497d27f8260fddf483ae29741e94fc8 /Mailman/Cgi/options.py | |
| parent | a753f08a668ef72e98ca904be85af11cca6a47e9 (diff) | |
| download | mailman-03581f28ed35f3a7ec5c0fe513662fc001b759b5.tar.gz mailman-03581f28ed35f3a7ec5c0fe513662fc001b759b5.tar.zst mailman-03581f28ed35f3a7ec5c0fe513662fc001b759b5.zip | |
Diffstat (limited to 'Mailman/Cgi/options.py')
| -rw-r--r-- | Mailman/Cgi/options.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Mailman/Cgi/options.py b/Mailman/Cgi/options.py index 69b259fe2..5626deafd 100644 --- a/Mailman/Cgi/options.py +++ b/Mailman/Cgi/options.py @@ -418,6 +418,11 @@ def main(): def options_page(mlist, doc, user, cpuser, userlang, message=''): + # The bulk of the document will come from the options.html template, which + # includes it's own html armor (head tags, etc.). Suppress the head that + # Document() derived pages get automatically. + doc.suppress_head = 1 + if mlist.obscure_addresses: presentable_user = Utils.ObscureEmail(user, for_text=1) if cpuser is not None: |
