From 973d2cd38c636b80e73cef7278bf5ac8efd037d1 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Fri, 9 Jul 2010 05:16:13 +0000 Subject: [PATCH] Fix version in newer DB version error message (trunk and branch) --- chrome/content/zotero/xpcom/zotero.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/zotero.js b/chrome/content/zotero/xpcom/zotero.js index d7088f6c3c..c6d1c2fe18 100644 --- a/chrome/content/zotero/xpcom/zotero.js +++ b/chrome/content/zotero/xpcom/zotero.js @@ -389,7 +389,7 @@ var Zotero = new function(){ Zotero.getString('startupError.zoteroVersionIsOlder'), Zotero.getString('startupError.zoteroVersionIsOlder.upgrade') ]) + "\n\n" - + Zotero.getString('startupError.zoteroVersionIsOlder.current') + "\n\n" + + Zotero.getString('startupError.zoteroVersionIsOlder.current', Zotero.version) + "\n\n" + Zotero.getString('general.seeForMoreInformation', kbURL); this.startupError = msg; }