diff options
author | gerv%gerv.net <> | 2003-09-08 07:06:39 +0200 |
---|---|---|
committer | gerv%gerv.net <> | 2003-09-08 07:06:39 +0200 |
commit | f0974849af6f863725278a51f783b4823950c028 (patch) | |
tree | fbb36c2237743fc0f4ece27dff94c13125a0d2cb /query.cgi | |
parent | 16bdf37258535f36ffc912e394f61d2b0b8ce1f6 (diff) | |
download | bugzilla-f0974849af6f863725278a51f783b4823950c028.tar.gz bugzilla-f0974849af6f863725278a51f783b4823950c028.tar.xz |
Bug 218523 - undefined warning in query.cgi. Patch by gerv; r,a=justdave.
Diffstat (limited to 'query.cgi')
-rwxr-xr-x | query.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -380,7 +380,7 @@ $vars->{'userdefaultquery'} = $userdefaultquery; $vars->{'orders'} = \@orders; $default{'querytype'} = $deforder || 'Importance'; -if (($::FORM{'query_format'} || $::FORM{'format'}) eq "create-series") { +if (($::FORM{'query_format'} || $::FORM{'format'} || "") eq "create-series") { require Bugzilla::Chart; $vars->{'category'} = Bugzilla::Chart::getVisibleSeries(); } |