Page 1 of 1

100% when getting info on: Nouveau monde, Le

Posted: 2004-01-06 23:42:41
by Guest
using IMDB large pic script and 3.4.2 CPU spinns 100%..

movie name is: The New World (1995)

Posted: 2004-01-07 09:13:30
by antp
Hi,
I'll check that this evening

Posted: 2004-01-07 17:58:15
by antp
At line 438 (or near it), there is the line

Code: Select all

      until (Pos('Runtime',Line) > 0) or (Pos('MPAA',Line) > 0 );
Replace it by

Code: Select all

      until (Pos('Runtime',Line) > 0) or (Pos('MPAA',Line) > 0 ) or (Pos('Country', Line) > 0);
And it will work ;)

Posted: 2004-01-07 19:21:14
by Guest
thanks!