]> git.decadent.org.uk Git - maypole.git/blobdiff - lib/Maypole.pm
fix to bug in Apache::MVC location handling
[maypole.git] / lib / Maypole.pm
index 4f4008500aa0ad94a916c311453591ab6fa073e3..5e85cdfe59b45b23e7cf16905b45598a926593ba 100644 (file)
@@ -476,7 +476,6 @@ sub component {
 
     $self->get_user;
     my $url = URI->new($path);
-    warn "path : $path\n";
     $self->{path} = $url->path;
     $self->parse_path;
     $self->params( $url->query_form_hash );
@@ -990,7 +989,6 @@ sub parse_path
 
     my @pi = grep {length} split '/', $self->path;
 
-
     $self->table  || $self->table(shift @pi);
     $self->action || $self->action( shift @pi or 'index' );
     $self->args   || $self->args(\@pi);