Page 1 of 1

IMDB TV Shows

Posted: 2005-05-29 16:38:12
by MADali
Is there a way to stop IMDB from showing TV show titles as "whatever". Meaning to remove the quotes?

Posted: 2005-05-29 16:42:42
by antp
Search for the line

Code: Select all

      SetField(fieldOriginalTitle, Value2);
and replace it by

Code: Select all

      SetField(fieldOriginalTitle, StringReplace(Value2, '"', ''));
This will remove all " " of original title.

Posted: 2005-05-30 19:28:54
by MADali
THanks a lot! It works!

But now I dont know which one I prefer! This is so stressful.