Skip to content

Commit

Permalink
Fixed the pod documentation Catalyst::Action::Role::ACL where in the …
Browse files Browse the repository at this point in the history
…denied sub 2 wrong lines where written :)
  • Loading branch information
stephan48 committed Jul 13, 2009
1 parent 2a0c3a0 commit 6ee0617
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Catalyst/Action/Role/ACL.pm
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ Catalyst::Action::Role::ACL - Deprecated user role-based authorization action cl
sub denied :Private {
my ($self, $c) = @_;
$c->res->status = '403';
$c->body('Denied!');
$c->res->status('403');
$c->res->body('Denied!');
}
=head1 DESCRIPTION
Expand Down

0 comments on commit 6ee0617

Please sign in to comment.