Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/WWW/Mechanize/Examples.pod
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ If I had more time, I'd implement WWW::Photobucket on top of WWW::Mechanize.
my $url = "http://img78.photobucket.com/albums/v281/$login/$folder/";

# login to your photobucket.com account
my $mech = WWW::Mechanize->new();
my $mech = WWW::Mechanize->new( autocheck => 0 );
$mech->get($url);
$mech->submit_form(
form_number => 1,
Expand Down Expand Up @@ -343,7 +343,7 @@ Last I checked, it didn't work because their HTML didn't match, but it's still g
sub get_quotes_page {
my $movie = shift;

my $mech = WWW::Mechanize->new;
my $mech = WWW::Mechanize->new( autocheck => 0 );
$mech->get( "http://www.imdb.com/search" );
$mech->success or die "Can't get the search page";

Expand Down