After my admin page mysteriously became a totally blank page, I decided to try the upgrade. It’s pretty nice! There are a lot of new little usability features, like adding categories right from the write screen, that save time. MyNetflix seems to work well too, although to get the images to work for all of the movies I had to add/change:
$movie_id_start_position = strpos($link, “movieid=”) + 8;
+ >> $movie_id_end_position = strpos($link, “&trkid=”);
+ >> $movie_id_length = $movie_id_end_position - $movie_id_start_position;- >> $movie_id = substr($link, $movie_id_start_position, 8);
+ >> $movie_id = substr($link, $movie_id_start_position, $movie_id_length);
…in netflix.php cause the movieid length isn’t always 8. so if your sick of these… 