diff options
author | myk%mozilla.org <> | 2004-02-04 05:05:04 +0100 |
---|---|---|
committer | myk%mozilla.org <> | 2004-02-04 05:05:04 +0100 |
commit | da67ec0f7409109b85427b8f0579dc9f5fc72ec9 (patch) | |
tree | b67a5dc68cedb7e3422cd4266c6142a9a342a0ef /enter_bug.cgi | |
parent | 5f4585764873c8b7254c5c41e12b50d62d765301 (diff) | |
download | bugzilla-da67ec0f7409109b85427b8f0579dc9f5fc72ec9.tar.gz bugzilla-da67ec0f7409109b85427b8f0579dc9f5fc72ec9.tar.xz |
Fix for bug 220998: Allows blocks, dependson, and keywords values to be part of a bug entry template (i.e. a URL that presets those fields to specific values).
Original patch by Ludovic Dubost.
r=kiko
Diffstat (limited to 'enter_bug.cgi')
-rwxr-xr-x | enter_bug.cgi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/enter_bug.cgi b/enter_bug.cgi index 1dd8aa96c..eedd1da7f 100755 --- a/enter_bug.cgi +++ b/enter_bug.cgi @@ -286,6 +286,10 @@ $default{'rep_platform'} = pickplatform(); $vars->{'op_sys'} = \@legal_opsys; $default{'op_sys'} = pickos(); +$vars->{'keywords'} = formvalue('keywords'); +$vars->{'dependson'} = formvalue('dependson'); +$vars->{'blocked'} = formvalue('blocked'); + # Use the version specified in the URL, if one is supplied. If not, # then use the cookie-specified value. (Posting a bug sets a cookie # for the current version.) If no URL or cookie version, the default |