Skip Menu |

This queue is for tickets about the IMDB-Movie CPAN distribution.

Report information
The Basics
Id: 8423
Status: rejected
Priority: 0/
Queue: IMDB-Movie

People
Owner: Nobody in particular
Requestors: scott [...] holdren.com
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 0.12
Fixed in: (no value)



Subject: user rating and cast fail to parse
I assume the page format changed, because the parser fails to find the user ratings. This one line change fixes it and allow the user rating and cast info to be collected. *** Movie.pm Fri Jan 2 14:08:02 2004 --- /usr/lib/perl5/site_perl/5.8.0/IMDB/Movie.pm Sat Nov 13 20:46:38 2004 *************** *** 206,208 **** if ($tag->[1]->{href}) { ! last if $tag->[1]->{href} eq 'ratings'; } --- 206,208 ---- if ($tag->[1]->{href}) { ! last if $tag->[1]->{href} =~ /ratings$/; }
use IMDB::Film;