www

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

commit 81c33f49dd854b2a3d8562516304a24a1aaad318
parent cb656c9456569bd58830b0ed6676a55d3351c981
Author: Simon Kornblith <simon@simonster.com>
Date:   Mon, 13 Feb 2012 12:18:22 -0500

Closes #52: Allow to use empty string as delimiter in xpathText

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

diff --git a/chrome/content/zotero/xpcom/utilities.js b/chrome/content/zotero/xpcom/utilities.js @@ -972,7 +972,7 @@ Zotero.Utilities = { strings[i] = elements[i].textContent; } - return strings.join(delimiter ? delimiter : ", "); + return strings.join(delimiter !== undefined ? delimiter : ", "); }, /**