diff options
author | 2002-04-18 04:12:43 +0000 | |
---|---|---|
committer | 2002-04-18 04:12:43 +0000 | |
commit | e0df93893fce1a1c2035badd63171b6efa0fc551 (patch) | |
tree | 3612887e62d4307268d7baa526a26f5f8942856f /editproducts.cgi | |
parent | Bug 137589 - fix test 4 not to hang on the "use CGI" in the template. (diff) | |
download | bugzilla-e0df93893fce1a1c2035badd63171b6efa0fc551.tar.gz bugzilla-e0df93893fce1a1c2035badd63171b6efa0fc551.tar.bz2 bugzilla-e0df93893fce1a1c2035badd63171b6efa0fc551.zip |
Bug 136754 - warning in editproduct.cgi if usebuggroups option is on. Patch by justdave; r=gerv, bbaetz.
Diffstat (limited to 'editproducts.cgi')
-rwxr-xr-x | editproducts.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editproducts.cgi b/editproducts.cgi index c11c65db7..5db498ca1 100755 --- a/editproducts.cgi +++ b/editproducts.cgi @@ -692,7 +692,7 @@ if ($action eq 'edit') { SendSQL("SELECT userregexp FROM groups WHERE name=" . SqlQuote($product)); - $userregexp = FetchOneColumn(); + $userregexp = FetchOneColumn() || ""; } print "<FORM METHOD=POST ACTION=editproducts.cgi>\n"; |