X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=lib%2FMaypole.pm;h=7c9a8462eb7fb7237ef8713b0e7c34bcdbc88cf0;hb=3c53e0b127e3f369a252bec0e4580567f6e85f2a;hp=13af1719bbb4954de5a005e017072d8dce7caed1;hpb=371b76dc4be5e9a9cd9955e58f689725d458f46b;p=maypole.git diff --git a/lib/Maypole.pm b/lib/Maypole.pm index 13af171..7c9a846 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.01'; __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 ) {