From 047e15836800f93e58dadc403a3e9afd617b59aa Mon Sep 17 00:00:00 2001 From: "cyeh%bluemartini.com" <> Date: Fri, 23 Feb 2001 02:36:06 +0000 Subject: fix for 69688: buglist.cgi: the intermediate "please stand by" page is ugly patch submitted by st.n@gmx.net (Stephan Niemz [faniz]) --- buglist.cgi | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/buglist.cgi b/buglist.cgi index 401c5d818..f30613cf1 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -760,10 +760,15 @@ if (exists $ENV{'HTTP_USER_AGENT'} && $ENV{'HTTP_USER_AGENT'} =~ /Mozilla.[3-9]/ # especially during page reload. $serverpush = 1; - print "Content-type: multipart/x-mixed-replace;boundary=thisrandomstring\n\n"; - print "--thisrandomstring\n"; - print "Content-type: text/html\n\n"; - print "

Please stand by ...

\n"; + print qq{Content-type: multipart/x-mixed-replace;boundary=thisrandomstring\n +--thisrandomstring +Content-type: text/html\n +Bugzilla is pondering your query + +

Please stand by ...

+ }; # Note! HTML header is complete! } else { print "Content-type: text/html\n"; @@ -772,7 +777,6 @@ if (exists $ENV{'HTTP_USER_AGENT'} && $ENV{'HTTP_USER_AGENT'} =~ /Mozilla.[3-9]/ print "Content-disposition: inline; filename=bugzilla_bug_list.html\n"; # Note! Don't finish HTML header yet! Only one newline so far! } - sub DefCol { my ($name, $k, $t, $s, $q) = (@_); -- cgit v1.2.1