This is an automated email from the git hooks/post-receive script.
richard pushed a commit to branch tor-browser-91.10.0esr-11.5-1 in repository tor-browser.
commit 7244207afd1d149488aa88991c889031786f0ca0 Author: Pier Angelo Vendrame pierov@torproject.org AuthorDate: Tue Jun 14 16:37:38 2022 +0200
fixup! Bug 2176: Rebrand Firefox to TorBrowser
Point Tor Browser Help to about:manual on the about dialog --- browser/base/content/utilityOverlay.js | 3 +++ 1 file changed, 3 insertions(+)
diff --git a/browser/base/content/utilityOverlay.js b/browser/base/content/utilityOverlay.js index a95717544b80f..fd85693809036 100644 --- a/browser/base/content/utilityOverlay.js +++ b/browser/base/content/utilityOverlay.js @@ -1084,6 +1084,9 @@ function makeURLAbsolute(aBase, aUrl) { }
function getHelpLinkURL(aHelpTopic) { + if (aHelpTopic === "firefox-help" || aHelpTopic === "firefox-osxkey") { + return "about:manual"; + } var url = Services.urlFormatter.formatURLPref("app.support.baseURL"); return url + aHelpTopic; }