www

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

commit 98868146ec177154baa0069b99cad0c44a1cbaa0
parent c245cbc8673a050c023e49b497bf4f4e43072461
Author: Simon Kornblith <simon@simonster.com>
Date:   Tue, 28 Feb 2012 14:56:41 -0500

Fix code to get collation

Diffstat:
Mchrome/content/zotero/tools/testTranslators/translatorTester.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chrome/content/zotero/tools/testTranslators/translatorTester.js b/chrome/content/zotero/tools/testTranslators/translatorTester.js @@ -73,7 +73,7 @@ Zotero_TranslatorTesters = new function() { var results = []; if("getLocaleCollation" in Zotero) { - var collation = collationFactory.CreateCollation(localeService.getApplicationLocale()); + var collation = Zotero.getLocaleCollation(); strcmp = function(a, b) { return collation.compareString(1, a, b); };