I just installed imdb-0.8.3 and found a couple of problems. One was the image problem but that fix was already covered in another thread.
The other problem was that instead of just showing a list of taglines, almost the entire IMDb taglines page was appearing in the results. There were a couple of problems that were causing this. I fixed it by changing:
I just installed imdb-0.8.3 and found a couple of problems. One was the image problem but that fix was already covered in another thread.
The other problem was that instead of just showing a list of taglines, almost the entire IMDb taglines page was appearing in the results. There were a couple of problems that were causing this. I fixed it by changing:
$tags_s = strpos ($this->page["Taglines"], "<td width=\"90%\" valign=\"top\" >", $tags_e);
to:
$tags_s = strpos ($this->page["Taglines"], "<td width=\"80%\">", $tags_e);
$tags_e = $tags_s;
Hopefully this will help someone else.
Sorry, those changes should be applied to the taglines function in imdb.class.php. And the changes are changing one line and adding another line.