Subject: | Callculate $current url incorrectly |
Hi,
This line in OpenID.pm:
my $current = $c->uri_for($c->req->uri->path); # clear
query/fragment...
should be:
my $current = $c->uri_for('/'.$c->req->path); # clear
query/fragment...
otherwise it will get the wrong url if myapp is not at the domain root,
and/or the login action is not in Root.pm
Regards,
Thorben