www

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

commit ea1573e1c3f8d480701397d4302b5533f8d8c9e7
parent 9f4b128c1449e924127d7a6495743fa719a19e57
Author: Dan Stillman <dstillman@zotero.org>
Date:   Tue, 26 May 2015 03:09:11 -0400

Don't log warning when localized string for search condition not found

Falls back to item field strings, so not sure why I added logging for
this.

Diffstat:
Mchrome/content/zotero/xpcom/search.js | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git a/chrome/content/zotero/xpcom/search.js b/chrome/content/zotero/xpcom/search.js @@ -2300,7 +2300,6 @@ Zotero.SearchConditions = new function(){ return Zotero.getString('searchConditions.' + str) } catch (e) { - Zotero.debug("String not found for searchConditions." + str, 2); return Zotero.ItemFields.getLocalizedString(null, str); } }