At 04:19 PM 11/15/00 -0500, Charles Day wrote:
># We added the line below to AuthCookie.pm
>$r->header_out("Location" => $args{'destination'}.$args{'args'});
Why pass a new argument? Can't you just add the query string onto the
destination field in your login.pl script?
Something like the untested:
my $uri = $r->prev->uri;
my $query = $r->prev->args;
$uri = "$uri?$query" if $query;
print qq[<INPUT TYPE=hidden NAME=destination VALUE="$uri">];
Bill Moseley
mailto:[EMAIL PROTECTED]
- AuthCookie solution Charles Day
- Re: AuthCookie solution Bill Moseley
- Re: AuthCookie solution Michael
- RE: AuthCookie solution Geoffrey Young
