]> git.decadent.org.uk Git - maypole.git/blobdiff - lib/Maypole.pm
minor tweaks
[maypole.git] / lib / Maypole.pm
index bcd0b3ab0d6ff7f6bd12f858b3ab40bab1276e2f..e16dd829abc76ab7e3c6d1da9b40f0153cfc7e85 100644 (file)
@@ -23,6 +23,7 @@ sub setup {
     $calling_class = ref $calling_class if ref $calling_class;
     {
         no strict 'refs';
+        no warnings 'redefine';
 
         # Naughty.
         *{ $calling_class . "::handler" } =
@@ -72,6 +73,7 @@ sub handler {
 sub handler_guts {
     my $r = shift;
     $r->model_class( $r->config->model->class_of( $r, $r->{table} ) );
+
     my $applicable = $r->is_applicable;
     unless ( $applicable == OK ) {