Scripts that need to be fixed / Scripts à corriger
Temporary fix unnecessary quotation marks in IMDB script
///////// temporary fix unnecessary quotation marks in IMDB script 3.88antp wrote:I'm guessing IMDb; as they display the title that way on the site, the script imports it as it is. It could be fixed, as there is no much point in keeping these quotes.
MovieName := GetField(fieldOriginalTitle);
MovieName := StringReplace(MovieName, '"', '');
SetField(fieldOriginalTitle, MovieName);
////////Insert before last [end.]