diff options
author | terry%mozilla.org <> | 1999-10-19 08:57:56 +0200 |
---|---|---|
committer | terry%mozilla.org <> | 1999-10-19 08:57:56 +0200 |
commit | 003f86fb1f9c7f77f65b851a2ff57617bd9bf277 (patch) | |
tree | 50ab4447e78f8bddde86c47189bb8d43cb4d3568 /editcomponents.cgi | |
parent | 91d8db0df1b0e1465a1f1c13c1e9adb5cf3d9c7b (diff) | |
download | bugzilla-003f86fb1f9c7f77f65b851a2ff57617bd9bf277.tar.gz bugzilla-003f86fb1f9c7f77f65b851a2ff57617bd9bf277.tar.xz |
Fixed stupid perl warnings.
Diffstat (limited to 'editcomponents.cgi')
-rwxr-xr-x | editcomponents.cgi | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/editcomponents.cgi b/editcomponents.cgi index 371c27b72..322cd2c27 100755 --- a/editcomponents.cgi +++ b/editcomponents.cgi @@ -22,6 +22,15 @@ use strict; require "CGI.pl"; require "globals.pl"; +# Shut up misguided -w warnings about "used only once". For some reason, +# "use vars" chokes on me when I try it here. + +sub sillyness { + my $zz; + $zz = $::buffer; +} + + my $dobugcounts = (defined $::FORM{'dobugcounts'}); |