diff options
Diffstat (limited to 'buglist.cgi')
-rwxr-xr-x | buglist.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buglist.cgi b/buglist.cgi index 2183d5a79..246bf64c9 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -94,7 +94,7 @@ if ($::FORM{'format'} && $::FORM{'format'} eq "rdf" && !$::FORM{'ctype'}) { # # Note that if and when this call clears cookies or has other persistent # effects, we'll need to do this another way instead. -if ($::FORM{'ctype'} eq "js") { +if ((exists $::FORM{'ctype'}) && ($::FORM{'ctype'} eq "js")) { Bugzilla->logout(); } |