]> git.decadent.org.uk Git - maypole.git/blobdiff - lib/Maypole.pm
increased version number to 2.01
[maypole.git] / lib / Maypole.pm
index 13af1719bbb4954de5a005e017072d8dce7caed1..7c9a8462eb7fb7237ef8713b0e7c34bcdbc88cf0 100644 (file)
@@ -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 ) {