www

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

commit 071c05e0bb5e0cded43d1a6dc9f320efd42c287d
parent 0f96de71ac26169360bcfbb377c7fa98ce325dd0
Author: Simon Kornblith <simon@simonster.com>
Date:   Sat, 11 Dec 2010 07:02:24 +0000

return en-US test, which i had disabled for testing


Diffstat:
Mchrome/content/zotero/xpcom/date.js | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/chrome/content/zotero/xpcom/date.js b/chrome/content/zotero/xpcom/date.js @@ -333,9 +333,9 @@ Zotero.Date = new function(){ var months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']; // If using a non-English bibliography locale, try those too - //if (Zotero.locale != 'en-US') { + if (Zotero.locale != 'en-US') { months = months.concat(Zotero.Date.months.short); - //} + } if(!_monthRe) { _monthRe = new RegExp("^(.*)\\b("+months.join("|")+")[^ ]*(?: (.*)$|$)", "i"); }