diff --git a/translators/ISI Web of Knowledge.js b/translators/ISI Web of Knowledge.js index aaaadc8ab..736b360c6 100644 --- a/translators/ISI Web of Knowledge.js +++ b/translators/ISI Web of Knowledge.js @@ -73,6 +73,9 @@ function doWeb(doc, url) { } else if (field == "TI") { item.title = content; } else if (field == "SO") { + // People say ISI is bad about being all-caps; let's try this for now + // http://forums.zotero.org/discussion/17316 + if (content.toUpperCase() == content) Zotero.Utilities.capitalizeTitle(content.toLowerCase(), true); item.publicationTitle = content; } else if (field == "SN") { item.ISSN = content; @@ -110,4 +113,4 @@ function doWeb(doc, url) { item.attachments = [{url:item.url, title:"ISI Web of Knowledge Snapshot", mimeType:"text/html"}]; item.complete(); } -} \ No newline at end of file +}