diff options
author | terry%mozilla.org <> | 2000-01-23 11:22:10 +0100 |
---|---|---|
committer | terry%mozilla.org <> | 2000-01-23 11:22:10 +0100 |
commit | b078a81284bae319bead595679bec9594447b768 (patch) | |
tree | 948bc9ea14cdf0c5ac52fb0701da94e6973dbd74 /query.cgi | |
parent | 04824af9663502bc5cc16583463c7d6819610fec (diff) | |
download | bugzilla-b078a81284bae319bead595679bec9594447b768.tar.gz bugzilla-b078a81284bae319bead595679bec9594447b768.tar.xz |
Can now search for people who have added text to a bug.
Diffstat (limited to 'query.cgi')
-rwxr-xr-x | query.cgi | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -75,8 +75,10 @@ foreach my $name ("bug_status", "resolution", "assigned_to", "rep_platform", "chfieldto", "chfieldvalue", "email1", "emailtype1", "emailreporter1", "emailassigned_to1", "emailcc1", "emailqa_contact1", + "emaillongdesc1", "email2", "emailtype2", "emailreporter2", "emailassigned_to2", "emailcc2", "emailqa_contact2", + "emaillongdesc2", "changedin", "votes", "short_desc", "short_desc_type", "long_desc", "long_desc_type", "bug_file_loc", "bug_file_loc_type", "status_whiteboard", @@ -138,6 +140,7 @@ sub GenerateEmailInput { my $assignedto = ($default{"emailassigned_to$id"} eq "1") ? "checked" : ""; my $reporter = ($default{"emailreporter$id"} eq "1") ? "checked" : ""; my $cc = ($default{"emailcc$id"} eq "1") ? "checked" : ""; + my $longdesc = ($default{"emaillongdesc$id"} eq "1") ? "checked" : ""; my $qapart = ""; my $qacontact = ""; @@ -188,7 +191,13 @@ sub GenerateEmailInput { <tr> <td align=right>(Will match any of the selected fields)</td> <td> -<input type="checkbox" name="emailcc$id" value=1 $cc>CC +<input type="checkbox" name="emailcc$id" value=1 $cc>CC +</td> +</tr> +<tr> +<td></td> +<td> +<input type="checkbox" name="emaillongdesc$id" value=1 $longdesc>Added comment </td> </tr> </table> |