X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=lib%2FMaypole.pm;h=802769378b508f554b06caf549658eca76e6cdcb;hb=7a5d8104289f1781b0909e79c4e4ab51fa193104;hp=13af1719bbb4954de5a005e017072d8dce7caed1;hpb=371b76dc4be5e9a9cd9955e58f689725d458f46b;p=maypole.git diff --git a/lib/Maypole.pm b/lib/Maypole.pm index 13af171..8027693 100644 --- a/lib/Maypole.pm +++ b/lib/Maypole.pm @@ -6,7 +6,7 @@ use warnings; use Maypole::Config; use Maypole::Constants; -our $VERSION = '2.0'; +our $VERSION = '2.02'; __PACKAGE__->mk_classdata($_) for qw( config init_done view_object ); __PACKAGE__->mk_accessors( @@ -84,7 +84,6 @@ sub handler_guts { # We authenticate every request, needed for proper session management my $status; eval { $status = $r->call_authenticate }; - warn "No return value from authenticate" unless $status; if ( my $error = $@ ) { $status = $r->call_exception($error); if ( $status != OK ) {