From a8631f760ac5ce882ca6a3c87b7dc15b6a6643e2 Mon Sep 17 00:00:00 2001 From: Simon Kornblith Date: Sat, 2 Jul 2011 17:06:02 +0000 Subject: [PATCH] Change quickstart URL to https so that it doesn't display a security warning --- chrome/content/zotero/zoteroPane.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chrome/content/zotero/zoteroPane.js b/chrome/content/zotero/zoteroPane.js index c00f02922..5049080b6 100644 --- 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); }