commit cb6fae694ccbf912f07b6a65a018734a78d3423b
parent ab36dda6e716eb8ba2ffeec973180922fe4ab5b5
Author: Dan Stillman <dstillman@zotero.org>
Date: Thu, 7 Aug 2014 16:03:17 -0400
Fix attachment file mtime in right pane
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/chrome/content/zotero/bindings/attachmentbox.xml b/chrome/content/zotero/bindings/attachmentbox.xml
@@ -273,7 +273,7 @@
if (this.displayDateModified) {
this._id("dateModified-label").value = Zotero.getString('itemFields.dateModified')
+ Zotero.getString('punctuation.colon');
- var mtime = this.item.attachmentModificationTime;
+ var mtime = yield this.item.attachmentModificationTime;
if (mtime) {
this._id("dateModified").value = new Date(mtime).toLocaleString();
}