diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2013-09-10 23:11:16 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2013-09-10 23:11:16 +0200 |
commit | 948a73c2cc7709e2f46c86aa0211b2a465e38b40 (patch) | |
tree | b26e525792829d71fde060e8c59712ad746c5f25 | |
parent | Bug 875217 - SecurityError in Javascript on buglist.cgi (diff) | |
download | bugzilla-948a73c2cc7709e2f46c86aa0211b2a465e38b40.tar.gz bugzilla-948a73c2cc7709e2f46c86aa0211b2a465e38b40.tar.bz2 bugzilla-948a73c2cc7709e2f46c86aa0211b2a465e38b40.zip |
Bug 914262: KHTML-based browsers such as Konqueror do not support the Server-Push technology
r=dkl a=sgreen
-rwxr-xr-x | buglist.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buglist.cgi b/buglist.cgi index 553ea614c..4e3d2bd7a 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -110,7 +110,7 @@ my $serverpush = && exists $ENV{'HTTP_USER_AGENT'} && $ENV{'HTTP_USER_AGENT'} =~ /(Mozilla.[3-9]|Opera)/ && $ENV{'HTTP_USER_AGENT'} !~ /compatible/i - && $ENV{'HTTP_USER_AGENT'} !~ /(?:WebKit|Trident)/ + && $ENV{'HTTP_USER_AGENT'} !~ /(?:WebKit|Trident|KHTML)/ && !defined($cgi->param('serverpush')) || $cgi->param('serverpush'); |