diff options
author | terry%netscape.com <> | 1999-01-28 07:13:16 +0000 |
---|---|---|
committer | terry%netscape.com <> | 1999-01-28 07:13:16 +0000 |
commit | 30651175550b7818f3964c9b5787b0ad3c76f5b9 (patch) | |
tree | 47c287592586e0c55534801543a7e74c752a3b63 | |
parent | c7af3d044a13ac954acc4ac2cd3339fb587ae3f0 (diff) | |
download | bugs-30651175550b7818f3964c9b5787b0ad3c76f5b9.tar bugs-30651175550b7818f3964c9b5787b0ad3c76f5b9.tar.gz bugs-30651175550b7818f3964c9b5787b0ad3c76f5b9.tar.bz2 bugs-30651175550b7818f3964c9b5787b0ad3c76f5b9.tar.xz bugs-30651175550b7818f3964c9b5787b0ad3c76f5b9.zip |
Fixed bug 2311 -- searching for status_whiteboard wasn't working.
-rwxr-xr-x | buglist.cgi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/buglist.cgi b/buglist.cgi index 2df231ece..3cdfd2f1d 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -338,7 +338,8 @@ Click the <B>Back</B> button and try again."; } } -foreach my $f ("short_desc", "long_desc", "bug_file_loc") { +foreach my $f ("short_desc", "long_desc", "bug_file_loc", + "status_whiteboard") { if (defined $::FORM{$f}) { my $s = trim($::FORM{$f}); if ($s ne "") { |