Skip to content

Commit

Permalink
Checking in changes prior to tagging of version 0.44.
Browse files Browse the repository at this point in the history
Changelog diff is:

diff --git a/Changes b/Changes
index 40312cb..95bc0fe 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,7 @@
 Revision history for Perl extension CGI::Header.

+0.44  Apr 9th, 2013
+
   [INCOMPATIBLE CHANGES]

     - Revise new() entirely
  • Loading branch information
Ryo Anazawa committed Apr 8, 2013
1 parent 0c5a7a1 commit 0206be2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions Changes
@@ -1,5 +1,7 @@
Revision history for Perl extension CGI::Header.

0.44 Apr 9th, 2013

[INCOMPATIBLE CHANGES]

- Revise new() entirely
Expand Down
10 changes: 5 additions & 5 deletions lib/CGI/Header.pm
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use Carp qw/croak/;

our $VERSION = '0.43';
our $VERSION = '0.44';

my %Property_Alias = (
'cookies' => 'cookie',
Expand Down Expand Up @@ -186,11 +186,11 @@ sub as_hashref {
}

sub flatten {
my $self = shift;
my $level = defined $_[0] ? int shift : 1;
my $self = shift;
my $level = defined $_[0] ? int shift : 1;
my $handler = $self->{handler};
my $query = $self->query;
my %copy = %{ $self->{header} };
my $query = $self->query;
my %copy = %{ $self->{header} };

my @headers;

Expand Down

0 comments on commit 0206be2

Please sign in to comment.