IMDB TV Shows

If you made a script you can offer it to the others here, or ask help to improve it. You can also report here bugs & problems with existing scripts.
Post Reply
MADali

IMDB TV Shows

Post by MADali »

Is there a way to stop IMDB from showing TV show titles as "whatever". Meaning to remove the quotes?
antp
Site Admin
Posts: 9651
Joined: 2002-05-30 10:13:07
Location: Brussels
Contact:

Post 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.
MADali

Post by MADali »

THanks a lot! It works!

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