www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit 702b7473039647ab03d9ee635200787b692540f0
parent c0b8f386202cfce92ac0f50cdbbefab61527a85a
Author: Sean Takats <sean@takats.org>
Date:   Wed, 28 Jan 2009 18:42:20 +0000

BibTeX author delimiter ("and") is now case insensitive on import.


Diffstat:
Mtranslators/BibTeX.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/translators/BibTeX.js b/translators/BibTeX.js @@ -1557,7 +1557,7 @@ function processField(item, field, value) { item.publicationTitle = value; } else if(field == "author" || field == "editor") { // parse authors/editors - var names = value.split(" and "); + var names = value.split(/ and /i); // now case insensitive for each(var name in names) { item.creators.push(Zotero.Utilities.cleanAuthor(name, field, (name.indexOf(",") != -1)));