Hello,

Redirects after login stopped working after this latest upgrade, as if
Root::end() isn't ignoring 3xx status'.  I've downgraded
Catalyst::Action::RenderView from 0.15 to 0.14 and the redirects work
again.  Bad end() code or bug?

My end looks like

sub end : ActionClass('RenderView')
{
    my ($self, $c) = @_;

    # test: skip redirects
    return if $c->res->status == 302;

    my $view;
    if ($c->stash->{printwrapper}) {
        $view = 'App::View::TTPrint';
    }

    <snip> . . . .


Thanks

Ryan

_______________________________________________
List: [email protected]
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/[email protected]/
Dev site: http://dev.catalyst.perl.org/

Reply via email to