Skip to content

Commit

Permalink
Richard Clamp pointed out that Filter::HTTPD doesn't import all the
Browse files Browse the repository at this point in the history
symbols it needs.  This indicates a Great Need to have that filter
tested properly.  Also bumped POE.pm to 0.3007 for a quick bugfix
release.
  • Loading branch information
rcaputo committed Jan 2, 2005
1 parent 4fc5771 commit 393ed38
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/POE.pm
Expand Up @@ -7,7 +7,7 @@ use strict;
use Carp qw( croak ); use Carp qw( croak );


use vars qw($VERSION $REVISION); use vars qw($VERSION $REVISION);
$VERSION = '0.3006'; $VERSION = '0.3007';
$REVISION = do {my@r=(q$Revision$=~/\d+/g);sprintf"%d."."%04d"x$#r,@r}; $REVISION = do {my@r=(q$Revision$=~/\d+/g);sprintf"%d."."%04d"x$#r,@r};


sub import { sub import {
Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Filter/HTTPD.pm
Expand Up @@ -20,7 +20,7 @@ use vars qw($VERSION);
$VERSION = do {my@r=(q$Revision$=~/\d+/g);sprintf"%d."."%04d"x$#r,@r}; $VERSION = do {my@r=(q$Revision$=~/\d+/g);sprintf"%d."."%04d"x$#r,@r};


use Carp qw(croak); use Carp qw(croak);
use HTTP::Status qw( RC_BAD_REQUEST RC_OK RC_LENGTH_REQUIRED ); use HTTP::Status qw( status_message RC_BAD_REQUEST RC_OK RC_LENGTH_REQUIRED );
use HTTP::Request (); use HTTP::Request ();
use HTTP::Response (); use HTTP::Response ();
use HTTP::Date qw(time2str); use HTTP::Date qw(time2str);
Expand Down

0 comments on commit 393ed38

Please sign in to comment.