Skip Menu |

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

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

People
Owner: Nobody in particular
Requestors: nightshaft [...] hotmail.com
Cc:
AdminCc:

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



Subject: Module appears to have stope working
This was working great it appears to have broken probably by a changed to IMDB. Perl example use IMDB::Movie; $Movie = "shrek"; print "Title Entered: $Movie<BR>\n"; my $movie_by_title = IMDB::Movie->new($Movie); Error: shrek turned up no matches at C:\test.pl line 6 Can't call method "get_tag" on an undefined value at C:/Perl/site/lib/IMDB/Movie.pm line 126.
From: andreas [...] haugsnes.no
Debugged and made a very small patch to fix a title change on IMDB. Haven't checked for more changes, and or tested it extensively, but seems to work. Andreas Haugsnes [guest - Sat Apr 2 22:48:24 2005]: Show quoted text
> This was working great it appears to have broken probably by a
changed Show quoted text
> to IMDB. > > Perl example > > use IMDB::Movie; > > $Movie = "shrek"; > print "Title Entered: $Movie<BR>\n"; > my $movie_by_title = IMDB::Movie->new($Movie); > > Error: > shrek turned up no matches at C:\test.pl line 6 > Can't call method "get_tag" on an undefined value at > C:/Perl/site/lib/IMDB/Movie.pm line 126.
91,92c91 < < if ($title eq 'IMDb name and title search') { --- > if ($title eq "IMDb name and title search for \"$id\"") { 253d251 <
use IMDB::Film;