diff --git a/chrome/content/zotero/xpcom/zotero.js b/chrome/content/zotero/xpcom/zotero.js index ac924ece9..9ab5aa1e8 100644 --- a/chrome/content/zotero/xpcom/zotero.js +++ b/chrome/content/zotero/xpcom/zotero.js @@ -1844,6 +1844,9 @@ Zotero.Date = new function(){ * e.g. '2006-11-03 November 3rd, 2006' */ function isMultipart(str){ + if (isSQLDateTime(str)) { + return false; + } return _multipartRE.test(str); }