Thank you nhawk: great mod! :up:
I just amended few things in the "newpost_process" plugin.
1) I added the language option, so to extract title and plot in Italian, as follows:
PHP Code:
curl_setopt($ch, CURLOPT_URL, "http://api.themoviedb.org/3/movie/" . $tmdbid . "?api_key=" . $vbulletin->options['tmdbthreads_api'] . "&language=it&include_image_language=it,null" . "&append_to_response=casts");
2) I added addslashes to the movietitle in the SQL because of the symbols (as ' ) we have in our language:
PHP Code:
$isposted = $vbulletin->db->query_first("SELECT threadid, tmdb_title FROM " . TABLE_PREFIX . "thread WHERE tmdb_title = '" . addslashes($movietitle) . "' AND tmdb_release = '" . $releasedate . "' AND forumid = '" . $foruminfo
3) I put variables $movietitle and $plot under utf8_decode() so to avoid gibberish characters and obtain ISO-8859-1 correct accented characters.