in reply to Module's .pm errors
sub add_cookie_header { my $self = shift; my $request = shift || return; my $url = $request->url; my $scheme = $url->scheme; unless ($scheme =~ /^https?\z/) { # LINE 45 LWP::Debug::debug("Will not add cookies to non-HTTP requests"); return; } my $domain = _host($request, $url); .....
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Module's .pm errors
by mkurtis (Scribe) on Feb 27, 2004 at 04:48 UTC | |
by chromatic (Archbishop) on Feb 27, 2004 at 05:50 UTC | |
by Roger (Parson) on Feb 27, 2004 at 05:51 UTC |