Skip to content

Commit

Permalink
Fix reference to stash
Browse files Browse the repository at this point in the history
  • Loading branch information
rwstauner committed Mar 19, 2014
1 parent 4060ab3 commit 984b354
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/MetaCPAN/Web/Controller/Author.pm
Expand Up @@ -85,7 +85,7 @@ sub index : Chained('root') PathPart('') Args(0) {
sub releases : Chained('root') PathPart Args(0) {
my ( $self, $c ) = @_;

my $id = $self->stash->{pauseid};
my $id = $c->stash->{pauseid};

my $size = 100;
my $page = $c->req->page > 0 ? $c->req->page : 1;
Expand Down

4 comments on commit 984b354

@oalders
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oops!

@rwstauner
Copy link
Contributor Author

@rwstauner rwstauner commented on 984b354 Mar 19, 2014 via email

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@oalders
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I just assumed it was my error. ;)

@rwstauner
Copy link
Contributor Author

@rwstauner rwstauner commented on 984b354 Mar 19, 2014 via email

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.