Cannot login to website properly
Brought to you by:
perl_girl
login.pl seems to call CGI::redirect in a strange
way. I replaced
print $CGI->redirect($redirect, 0, $cookie);
with
print $CGI->header(-cookie=>$cookie,
-location=>$redirect, -status=>"302 Found");
Which seems to have made it work.