Skip Menu |

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

Report information
The Basics
Id: 86594
Status: new
Priority: 0/
Queue: IMDB-Film

People
Owner: Nobody in particular
Requestors: gerph [...] gerph.org
Cc:
AdminCc:

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



Subject: release_dates doesn't work any more
The release_dates() function returns undef now, because it cannot find the table it is interested in. This can simply be fixed by changing the code which checks for the class on the th elements to look for the id='release_dates' on the table itself. < while(my $tag = $parser->get_tag('th')) { < last if $tag->[1]->{class} && $tag->[1]->{class} eq 'xxxx'; --- Show quoted text
> while(my $tag = $parser->get_tag('table')) { > last if $tag->[1]->{id} && $tag->[1]->{id} eq 'release_dates';
Once applied, it can then return the correct details.