Skip Menu |

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

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

People
Owner: Nobody in particular
Requestors: 2ge [...] 2ge.us
Cc:
AdminCc:

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



Subject: Wrong handling AKA names
Hi, just find out, where is no AKA available in full_also_knows_as (eg http://akas.imdb.com/title/tt1852036/releaseinfo ) it returns WRONG akas from footer of website. Fix is: in sub full_also_known_as one have to replace: while($tag = $parser->get_tag('a')) { last if $tag->[1]->{name} && $tag->[1]->{name} =~ /^akas$/i; } to while($tag = $parser->get_tag('table')) { last if $tag->[1]->{id} && $tag->[1]->{id} =~ /^akas$/i; }