diff options
author | justdave%syndicomm.com <> | 2001-06-01 11:07:27 +0200 |
---|---|---|
committer | justdave%syndicomm.com <> | 2001-06-01 11:07:27 +0200 |
commit | f30e92711a48569225bd1810b11c7ea91bae14d1 (patch) | |
tree | 2bbbcb09d5bdb843bc414c4e743956016c9acf02 /colchange.cgi | |
parent | bc521effbd39f4e88e8de50dac650acd8a46705f (diff) | |
download | bugzilla-f30e92711a48569225bd1810b11c7ea91bae14d1.tar.gz bugzilla-f30e92711a48569225bd1810b11c7ea91bae14d1.tar.xz |
Fix for bug 57848, perl warnings in several files.
Patch by Nick Hibma <n_hibma@qubesoft.com>
r= justdave@syndicomm.com
Diffstat (limited to 'colchange.cgi')
-rwxr-xr-x | colchange.cgi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/colchange.cgi b/colchange.cgi index f825228ea..f3521b7ad 100755 --- a/colchange.cgi +++ b/colchange.cgi @@ -23,6 +23,10 @@ use diagnostics; use strict; +sub sillyness { # shut up "used only once" warnings + my $zz = @::legal_keywords; +} + require "CGI.pl"; print "Content-type: text/html\n"; |