Page 26 of 26

Posted: 2016-11-09 20:16:02
by antp
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.

Temporary fix unnecessary quotation marks in IMDB script

Posted: 2016-11-15 11:29:14
by AMC-user
antp 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.
///////// temporary fix unnecessary quotation marks in IMDB script 3.88
MovieName := GetField(fieldOriginalTitle);
MovieName := StringReplace(MovieName, '"', '');
SetField(fieldOriginalTitle, MovieName);
////////Insert before last [end.]