diff options
author | dave%intrec.com <> | 2000-09-16 23:08:37 +0200 |
---|---|---|
committer | dave%intrec.com <> | 2000-09-16 23:08:37 +0200 |
commit | 3faeb367cba6337d86f31eba2783ced6700734a6 (patch) | |
tree | a80e51a09fdb983d80caf0c47c938894355f93c3 /CGI.pl | |
parent | c5d3b08e6fa816cd5d7d11e41ed26cb88d8a1d68 (diff) | |
download | bugzilla-3faeb367cba6337d86f31eba2783ced6700734a6.tar.gz bugzilla-3faeb367cba6337d86f31eba2783ced6700734a6.tar.xz |
Fix for bug 51270: param for bodyhtml to allow sites to customize
background colors/image and link colors.
Diffstat (limited to 'CGI.pl')
-rw-r--r-- | CGI.pl | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -921,8 +921,7 @@ sub PutHeader { print "<HTML><HEAD>\n<TITLE>$title</TITLE>\n"; print Param("headerhtml") . "\n$jscript\n</HEAD>\n"; - print "<BODY BGCOLOR=\"#FFFFFF\" TEXT=\"#000000\"\n"; - print "LINK=\"#0000EE\" VLINK=\"#551A8B\" ALINK=\"#FF0000\" $extra>\n"; + print "<BODY " . Param("bodyhtml") . " $extra>\n"; print PerformSubsts(Param("bannerhtml"), undef); |