Subject: | Auth redirect to access_denied fails |
Reverting acl_access_denied() to the 0.08 version corrects the issue.
The "logs" are attached in a file.
I have access_denied : Private in my root controller roughly like this:
package SK::Controller::Root;
use strict;
use warnings;
use parent qw{SK::Controller};
sub access_denied : Private {
my ( $self, $c, $action ) = @_;
return $self;
}.
SK::Controller extends Catalyst::Controller with a begin() and end()
function I use in all my controllers.
# perl -v
This is perl, v5.8.8 built for amd64-freebsd
(with 1 registered patch, see perl -V for more detail)
# uname -a
FreeBSD urbandb.boughtornot.com 7.0-STABLE FreeBSD 7.0-STABLE #0: Mon
Mar 24 17:49:53 EDT 2008
root@urbandb.boughtornot.com:/usr/obj/usr/src/sys/GENERIC amd64
Subject: | logs |