Navigation Menu

Skip to content

Commit

Permalink
removing constant
Browse files Browse the repository at this point in the history
  • Loading branch information
Zbigniew Lukasiak committed Sep 4, 2010
1 parent 8b4d633 commit f9744fb
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -49,7 +49,7 @@ around 'local_dispatch' => sub {
my( $orig, $self, $path, @args ) = @_; my( $orig, $self, $path, @args ) = @_;
my $parsed = $self->parse_path( $path ); my $parsed = $self->parse_path( $path );
if( $parsed ){ if( $parsed ){
my $rs = $self->application->schema->resultset( 'Dvd' ); my $rs = $self->application->schema->resultset( $self->rs_name );
my $record = $rs->find( @{ $parsed->{ids} } ); my $record = $rs->find( @{ $parsed->{ids} } );
if( ! $record ) { if( ! $record ) {
my $res = $self->request->new_response(404); my $res = $self->request->new_response(404);
Expand Down

0 comments on commit f9744fb

Please sign in to comment.