morgan pushed to branch tor-browser-128.8.0esr-14.5-1 at The Tor Project / Applications / Tor Browser
Commits: dca03874 by Pier Angelo Vendrame at 2025-03-20T11:48:58+01:00 fixup! BB 18905: Hide unwanted items from help menu
BB 41755: Show the link to about:support in the help menu.
- - - - -
2 changed files:
- browser/base/content/browser-menubar.inc - toolkit/content/aboutSupport.js
Changes:
===================================== browser/base/content/browser-menubar.inc ===================================== @@ -489,7 +489,6 @@ appmenu-data-l10n-id="appmenu-help-enter-troubleshoot-mode2"/> <menuitem id="troubleShooting" oncommand="openTroubleshootingPage()" - hidden="true" data-l10n-id="menu-help-more-troubleshooting-info" appmenu-data-l10n-id="appmenu-help-more-troubleshooting-info"/> <menuitem id="help_reportSiteIssue"
===================================== toolkit/content/aboutSupport.js ===================================== @@ -1931,13 +1931,14 @@ function populateActionBox() { if (ResetProfile.resetSupported()) { $("reset-box").style.display = "block"; } - if (!Services.appinfo.inSafeMode && AppConstants.platform !== "android") { + // tor-browser#41755: Do not show safe mode, as it would disable NoScript. + /*if (!Services.appinfo.inSafeMode && AppConstants.platform !== "android") { $("safe-mode-box").style.display = "block";
if (Services.policies && !Services.policies.isAllowed("safeMode")) { $("restart-in-safe-mode-button").setAttribute("disabled", "true"); } - } + }*/ }
// Prompt user to restart the browser in safe mode
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/dca03874...
tor-commits@lists.torproject.org