]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Fix for bug 67663: globals.pl and CGI.pl emit "subroutine redefined"
authorkiko%async.com.br <>
Thu, 30 Oct 2003 09:31:57 +0000 (09:31 +0000)
committerkiko%async.com.br <>
Thu, 30 Oct 2003 09:31:57 +0000 (09:31 +0000)
messages. Fudge warnings via sillyness. r=myk, chaduv. a=myk.

CGI.pl
globals.pl

diff --git a/CGI.pl b/CGI.pl
index bcd9a7f90042bffda9d27dbbb8ee72ac152a9be6..982b067b224d1f1e1ce2cac3b031dea94acb4aad 100644 (file)
--- a/CGI.pl
+++ b/CGI.pl
@@ -42,7 +42,7 @@ use Bugzilla::Error;
 
 sub CGI_pl_sillyness {
     my $zz;
-    $zz = %::dontchange;
+    $zz = $::buffer;
 }
 
 use CGI::Carp qw(fatalsToBrowser);
index 14568a60e084abfa586cebb3f8f140573574736b..f9d19609c940ba7d395e543f33d189feaf835a60 100644 (file)
@@ -39,7 +39,6 @@ use Bugzilla::Config qw(:DEFAULT ChmodDataFile);
 
 sub globals_pl_sillyness {
     my $zz;
-    $zz = @main::SqlStateStack;
     $zz = @main::default_column_list;
     $zz = $main::defaultqueryname;
     $zz = @main::enterable_products;