diff --git a/browser/metro/base/content/flyoutpanels/SettingsCharm.js b/browser/metro/base/content/flyoutpanels/SettingsCharm.js index 7a6a9ad79848..a6712681e591 100644 --- a/browser/metro/base/content/flyoutpanels/SettingsCharm.js +++ b/browser/metro/base/content/flyoutpanels/SettingsCharm.js @@ -56,7 +56,8 @@ var SettingsCharm = { this.addEntry({ label: Strings.browser.GetStringFromName("helpOnlineCharm"), onselected: function() { - let url = Services.urlFormatter.formatURLPref("app.support.baseURL"); + let url = Services.urlFormatter.formatURLPref("app.support.baseURL") + + "firefox-help"; BrowserUI.addAndShowTab(url, Browser.selectedTab); } }); diff --git a/browser/metro/profile/metro.js b/browser/metro/profile/metro.js index b45d4f2a390b..3d9af3194556 100644 --- a/browser/metro/profile/metro.js +++ b/browser/metro/profile/metro.js @@ -428,7 +428,7 @@ pref("dom.ipc.content.nice", 1); pref("breakpad.reportURL", "https://crash-stats.mozilla.com/report/index/"); // TODO: This is not the correct article for metro!!! pref("app.sync.tutorialURL", "https://support.mozilla.org/kb/sync-firefox-between-desktop-and-mobile"); -pref("app.support.baseURL", "https://support.mozilla.org/1/firefox/%VERSION%/%OS%/%LOCALE%/"); +pref("app.support.baseURL", "https://support.mozilla.org/1/touch/%VERSION%/%OS%/%LOCALE%/"); pref("app.privacyURL", "http://www.mozilla.org/%LOCALE%/legal/privacy/firefox.html"); pref("app.creditsURL", "http://www.mozilla.org/credits/"); pref("app.channelURL", "http://www.mozilla.org/%LOCALE%/firefox/channel/");