diff options
author | terry%netscape.com <> | 1999-02-26 02:01:02 +0000 |
---|---|---|
committer | terry%netscape.com <> | 1999-02-26 02:01:02 +0000 |
commit | 21064c0dc66cc84653a86362889bbad580751ecd (patch) | |
tree | 083a4389857d06a6a06c52c19ccc21ce3b795b5a | |
parent | 35e12e95638875e023ed4da7cc728972b367a72c (diff) | |
download | bugs-21064c0dc66cc84653a86362889bbad580751ecd.tar bugs-21064c0dc66cc84653a86362889bbad580751ecd.tar.gz bugs-21064c0dc66cc84653a86362889bbad580751ecd.tar.bz2 bugs-21064c0dc66cc84653a86362889bbad580751ecd.tar.xz bugs-21064c0dc66cc84653a86362889bbad580751ecd.zip |
Patch from Dhiren Patel <dhiren@nuvomedia.com> -- deal with products
that have spaces or other weird characters in them.
-rwxr-xr-x | enter_bug.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/enter_bug.cgi b/enter_bug.cgi index 9b3651522..54745e45b 100755 --- a/enter_bug.cgi +++ b/enter_bug.cgi @@ -174,7 +174,7 @@ print " <FORM NAME=enterForm METHOD=POST ACTION=\"post_bug.cgi\"> <INPUT TYPE=HIDDEN NAME=bug_status VALUE=NEW> <INPUT TYPE=HIDDEN NAME=reporter VALUE=$::COOKIE{'Bugzilla_login'}> -<INPUT TYPE=HIDDEN NAME=product VALUE=$product> +<INPUT TYPE=HIDDEN NAME=product VALUE=\"" . value_quote($product) . "\"> <TABLE CELLSPACING=2 CELLPADDING=0 BORDER=0> <TR> <td ALIGN=right valign=top><B>Product:</B></td> |