diff options
author | gerv%gerv.net <> | 2003-08-29 06:36:58 +0200 |
---|---|---|
committer | gerv%gerv.net <> | 2003-08-29 06:36:58 +0200 |
commit | c707becf15bd49ae223cf3fb06b3690e5f4b855f (patch) | |
tree | fc69e338635b0b1b97cf819f8852d88f64dcbdc6 | |
parent | 3e777873a2774473b4c95aeb2a48481ae52c0677 (diff) | |
download | bugzilla-c707becf15bd49ae223cf3fb06b3690e5f4b855f.tar.gz bugzilla-c707becf15bd49ae223cf3fb06b3690e5f4b855f.tar.xz |
Bug 213577 - New reporting imports old series with wrong status query. Patch by jussi@comlink.fi; r=gerv, a=justdave.
-rwxr-xr-x | checksetup.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/checksetup.pl b/checksetup.pl index 7a1264a3e..bd3fda1fa 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -3702,7 +3702,7 @@ if (!$series_exists) { } # The query for statuses is different to that for resolutions. - $queries{$_} = ($query_prod . "status=$_") foreach (@statuses); + $queries{$_} = ($query_prod . "bug_status=$_") foreach (@statuses); $queries{$_} = ($query_prod . "resolution=$_") foreach (@resolutions); foreach my $field (@fields) { |