Skip to content

Commit

Permalink
[Web::Utils] fixed logical block/hash bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Carl Masak committed Apr 11, 2009
1 parent cda6927 commit 3f5032e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Web/Utils.pm
Expand Up @@ -132,7 +132,7 @@ module Web::Utils {
;

# Responses with HTTP status codes that should not have an entity body
my %STATUS_WITH_NO_ENTITY_BODY = (100..199, 204, 304).map: { $_ => 1 };
my %STATUS_WITH_NO_ENTITY_BODY = (100..199, 204, 304).map: { {$_ => 1} };

# A multipart form data parser, adapted from IOWA.
#
Expand Down

0 comments on commit 3f5032e

Please sign in to comment.