File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ Change history for HTML-Form
22
33{{$NEXT}}
44
5+ - Replace "use vars" with "our" (GH#34) (James Raspass)
6+
576.08 2022-08-14 09:26:10Z
68 - Remove Authority section from dist.ini (GH#27) (Olaf Alders)
79 - Allow buttons to not have a value (GH#8) (Felix Ostmann and Julien Fiegehenn)
Original file line number Diff line number Diff line change 6161 "Test::More" : " 0.96" ,
6262 "URI" : " 1.10" ,
6363 "perl" : " 5.008001" ,
64- "strict" : " 0" ,
65- "vars" : " 0"
64+ "strict" : " 0"
6665 }
6766 },
6867 "test" : {
Original file line number Diff line number Diff line change @@ -25,7 +25,6 @@ my %WriteMakefileArgs = (
2525 " Test::More" => " 0.96" ,
2626 " URI" => " 1.10" ,
2727 " strict" => 0,
28- " vars" => 0
2928 },
3029 " TEST_REQUIRES" => {
3130 " ExtUtils::MakeMaker" => 0,
@@ -57,7 +56,6 @@ my %FallbackPrereqs = (
5756 " URI" => " 1.10" ,
5857 " lib" => 0,
5958 " strict" => 0,
60- " vars" => 0,
6159 " warnings" => 0
6260);
6361
Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ requires "Test::More" => "0.96";
1010requires " URI" => " 1.10" ;
1111requires " perl" => " 5.008001" ;
1212requires " strict" => " 0" ;
13- requires " vars" => " 0" ;
1413
1514on ' test' => sub {
1615 requires " ExtUtils::MakeMaker" => " 0" ;
Original file line number Diff line number Diff line change 55use Carp ();
66use Encode ();
77
8- use vars qw( $VERSION) ;
98our $VERSION = ' 6.09' ;
109
1110my %form_tags = map {$_ => 1} qw( input textarea button select option) ;
Original file line number Diff line number Diff line change @@ -158,9 +158,8 @@ ok(@warn, 0);
158158# Try to parse form HTTP::Response directly
159159{
160160 package MyResponse ;
161- use vars qw( @ISA) ;
162161 require HTTP::Response;
163- @ISA = (' HTTP::Response' );
162+ our @ISA = (' HTTP::Response' );
164163
165164 sub base { " http://www.example.com" }
166165}
You can’t perform that action at this time.
0 commit comments