summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormailman1998-04-08 04:45:49 +0000
committermailman1998-04-08 04:45:49 +0000
commit63caa0bfcbd065b192b97ca36b98d695671f90ce (patch)
tree2323a12251c1790503f2c4bc7ae8325d88489108
parent8f2b432ea872c9dcc9d046fef42cc9d76043f9d0 (diff)
downloadmailman-63caa0bfcbd065b192b97ca36b98d695671f90ce.tar.gz
mailman-63caa0bfcbd065b192b97ca36b98d695671f90ce.tar.zst
mailman-63caa0bfcbd065b192b97ca36b98d695671f90ce.zip
Set document backgrounds (of error docs as well as primary) to white.
-rwxr-xr-xcgi/admin4
1 files changed, 2 insertions, 2 deletions
diff --git a/cgi/admin b/cgi/admin
index a9397cb6f..45d15a787 100755
--- a/cgi/admin
+++ b/cgi/admin
@@ -39,7 +39,7 @@ def main():
if len(list_info) < 1:
doc.AddItem(Header(2, "Invalid options to CGI script."))
- print doc.Format()
+ print doc.Format(bgcolor="#ffffff")
sys.exit(0)
list_name = string.lower(list_info[0])
@@ -49,7 +49,7 @@ def main():
try:
if not (list and list._ready):
doc.AddItem(Header(3, "%s: No such list" % list_name))
- print doc.Format()
+ print doc.Format(bgcolor="#ffffff")
sys.exit(0)
if len(list_info) == 1: