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
2 changed files:
Changes:
... | ... | @@ -489,7 +489,6 @@ |
489 | 489 | appmenu-data-l10n-id="appmenu-help-enter-troubleshoot-mode2"/>
|
490 | 490 | <menuitem id="troubleShooting"
|
491 | 491 | oncommand="openTroubleshootingPage()"
|
492 | - hidden="true"
|
|
493 | 492 | data-l10n-id="menu-help-more-troubleshooting-info"
|
494 | 493 | appmenu-data-l10n-id="appmenu-help-more-troubleshooting-info"/>
|
495 | 494 | <menuitem id="help_reportSiteIssue"
|
... | ... | @@ -1931,13 +1931,14 @@ function populateActionBox() { |
1931 | 1931 | if (ResetProfile.resetSupported()) {
|
1932 | 1932 | $("reset-box").style.display = "block";
|
1933 | 1933 | }
|
1934 | - if (!Services.appinfo.inSafeMode && AppConstants.platform !== "android") {
|
|
1934 | + // tor-browser#41755: Do not show safe mode, as it would disable NoScript.
|
|
1935 | + /*if (!Services.appinfo.inSafeMode && AppConstants.platform !== "android") {
|
|
1935 | 1936 | $("safe-mode-box").style.display = "block";
|
1936 | 1937 | |
1937 | 1938 | if (Services.policies && !Services.policies.isAllowed("safeMode")) {
|
1938 | 1939 | $("restart-in-safe-mode-button").setAttribute("disabled", "true");
|
1939 | 1940 | }
|
1940 | - }
|
|
1941 | + }*/
|
|
1941 | 1942 | }
|
1942 | 1943 | |
1943 | 1944 | // Prompt user to restart the browser in safe mode
|