Comment: in sub end (Score 1) on 2009.08.19 18:07
personal I do something like in sub end
if ( $c->res->location ) {
if ( $c->res->location eq '/login' ) {
$c->flash->{path} = $c->req->uri->as_string;
}
}
so that you don't need write session every request.
Read More
11 comments
if ( $c->res->location ) {
if ( $c->res->location eq '/login' ) {
$c->flash->{path} = $c->req->uri->as_string;
}
}
so that you don't need write session every request.
