We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b9d6c03 + 064261c commit eff0028Copy full SHA for eff0028
2 files changed
Changes
@@ -5,6 +5,7 @@ Change history for HTML-Form
5
- Replace "use vars" with "our" (GH#34) (James Raspass)
6
- Remove superfluous "use lib" (GH#35) (James Raspass)
7
- Replace "Test" with "Test::More" (GH#36) (James Raspass)
8
+ - Remove superfluous variable copy (GH#37) (James Raspass)
9
10
6.08 2022-08-14 09:26:10Z
11
- Remove Authority section from dist.ini (GH#27) (Olaf Alders)
lib/HTML/Form.pm
@@ -397,8 +397,7 @@ charset as specified by the 'charset' parameter of the parse() method.
397
398
BEGIN {
399
# Set up some accessors
400
- for (qw(method action enctype accept_charset)) {
401
- my $m = $_;
+ for my $m (qw(method action enctype accept_charset)) {
402
no strict 'refs';
403
*{$m} = sub {
404
my $self = shift;
0 commit comments