diff options
author | terry%netscape.com <> | 1998-08-28 02:22:22 +0200 |
---|---|---|
committer | terry%netscape.com <> | 1998-08-28 02:22:22 +0200 |
commit | d521acf9795855bb08474f7cfa4befc6e31cd066 (patch) | |
tree | 33afca4724bc64154cf2dd42491ec4d2cdf2dd87 /query.cgi | |
parent | 3a09e8b2bd88eef1e1b8b2ddf9d1f3ca097992eb (diff) | |
download | bugzilla-d521acf9795855bb08474f7cfa4befc6e31cd066.tar.gz bugzilla-d521acf9795855bb08474f7cfa4befc6e31cd066.tar.xz |
Fixed bug 538 -- can now search through summary and description fields.
Diffstat (limited to 'query.cgi')
-rwxr-xr-x | query.cgi | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -185,6 +185,20 @@ puts " </tr> </table> +<table border=0> +<tr> +<td align=right>Summary:</td> +<td><input name=short_desc size=30></td> +<td><input type=radio name=short_desc_type value=substr checked>Substring</td> +<td><input type=radio name=short_desc_type value=regexp>Regexp</td> +</tr> +<tr> +<td align=right>Description:</td> +<td><input name=long_desc size=30></td> +<td><input type=radio name=long_desc_type value=substr checked>Substring</td> +<td><input type=radio name=long_desc_type value=regexp>Regexp</td> +</tr> +</table> <p> |