diff options
author | justdave%syndicomm.com <> | 2001-06-27 11:31:54 +0200 |
---|---|---|
committer | justdave%syndicomm.com <> | 2001-06-27 11:31:54 +0200 |
commit | 3fa1d7e89daaeb43b0827a8474fd0aca44e86042 (patch) | |
tree | 61d90eeb810b26acb1ba4cf9abf261b8c3d93a20 | |
parent | 218999dc8b24961eb2f1e892d9eddb96d70a405f (diff) | |
download | bugzilla-3fa1d7e89daaeb43b0827a8474fd0aca44e86042.tar.gz bugzilla-3fa1d7e89daaeb43b0827a8474fd0aca44e86042.tar.xz |
Fixing "used only once" errors flagged by tinderbox on the last checkin.
-rw-r--r-- | bug_form.pl | 1 | ||||
-rwxr-xr-x | post_bug.cgi | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/bug_form.pl b/bug_form.pl index 8e5d251ae..139e2fcf4 100644 --- a/bug_form.pl +++ b/bug_form.pl @@ -32,6 +32,7 @@ sub bug_form_pl_sillyness { my $zz; $zz = %::FORM; $zz = %::components; + $zz = %::proddesc; $zz = %::prodmaxvotes; $zz = %::versions; $zz = @::legal_keywords; diff --git a/post_bug.cgi b/post_bug.cgi index e83690897..f1a3e6443 100755 --- a/post_bug.cgi +++ b/post_bug.cgi @@ -33,6 +33,7 @@ require "CGI.pl"; sub sillyness { my $zz; $zz = $::buffer; + $zz = $::usergroupset; $zz = %::COOKIE; $zz = %::components; $zz = %::versions; |