Fixed index action
Sebastian Riedel [Sat, 22 Oct 2005 14:07:53 +0000 (14:07 +0000)]
lib/Catalyst/DispatchType/Index.pm

index 3caeb5c..9057de1 100644 (file)
@@ -23,7 +23,6 @@ See L<Catalyst>.
 
 sub match {
     my ( $self, $c, $path ) = @_;
-    return if $path =~ m!/!;
     return if @{ $c->req->args };
     my $result = @{ $c->get_action( 'index', $c->req->path ) || [] }[-1];