commit a8631f760ac5ce882ca6a3c87b7dc15b6a6643e2
parent dd29d18b9370fdb9988ac27658b8e8b1c243b5fd
Author: Simon Kornblith <simon@simonster.com>
Date: Sat, 2 Jul 2011 17:06:02 +0000
Change quickstart URL to https so that it doesn't display a security warning
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/chrome/content/zotero/zoteroPane.js b/chrome/content/zotero/zoteroPane.js
@@ -227,9 +227,9 @@ var ZoteroPane = new function()
else if (Zotero.Prefs.get('firstRun2')) {
if (Zotero.Schema.dbInitialized || !Zotero.Sync.Server.enabled) {
setTimeout(function () {
- var url = "http://zotero.org/start";
+ const url = "https://www.zotero.org/start";
if(Zotero.isStandalone) {
- ZoteroStandalone.openInViewer("http://zotero.org/start");
+ ZoteroStandalone.openInViewer(url);
} else {
gBrowser.selectedTab = gBrowser.addTab(url);
}