Bug 231388 Regressed
Brought to you by:
gisle
Bug #231388 (Multiple Location: headers cause a bad
redirect) has reentered the LWP codebase.
UserAgent.pm 2.24 undid the fix you had put in to
version 1.79.
The fix is to line 322. Currently, it is:
my $referral_uri = $response->header('Location');
It had been working correctly in this previous form:
my ($referral_uri) = $response->header('Location');
Thanks!