www

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

commit e457e5bdfeebad96aaaae53283d6c820acc9d907
parent df9439f9a2d3a913a67ec7016d12e4fbc8db4aae
Author: Dan Stillman <dstillman@zotero.org>
Date:   Sun,  6 Oct 2013 23:57:40 -0400

Show patents by issue date in timeline view

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

diff --git a/chrome/content/zotero/xpcom/timeline.js b/chrome/content/zotero/xpcom/timeline.js @@ -33,7 +33,7 @@ Zotero.Timeline = new function () { var content = '<data>\n'; for each(var item in items) { - var date = item.getField(dateType, true); + var date = item.getField(dateType, true, true); if (date) { var sqlDate = (dateType == 'date') ? Zotero.Date.multipartToSQL(date) : date; sqlDate = sqlDate.replace("00-00", "01-01");