From 352400fb509401412c83c7741118d404f78aed24 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Thu, 1 Nov 2007 04:07:23 +0000 Subject: [PATCH] Fix incorrect defineGetter line --- chrome/content/zotero/xpcom/cite.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/cite.js b/chrome/content/zotero/xpcom/cite.js index 9069f8359..68dcb3a2a 100644 --- a/chrome/content/zotero/xpcom/cite.js +++ b/chrome/content/zotero/xpcom/cite.js @@ -1164,7 +1164,7 @@ Zotero.CSL.Global = new function() { this.ns = "http://purl.org/net/xbiblio/csl"; - this.locale = this.__defineGetter__("locale", function() { + this.__defineGetter__("locale", function() { Zotero.CSL.Global.init() return Zotero.CSL.Global._xmlLang; });