morgan pushed to branch base-browser-128.8.0esr-14.5-1 at The Tor Project / Applications / Tor Browser
Commits:
- 
e0147508
by Pier Angelo Vendrame at 2025-03-20T13:22:29+00:00
 
2 changed files:
Changes:
| ... | ... | @@ -481,7 +481,6 @@ | 
| 481 | 481 |                            appmenu-data-l10n-id="appmenu-help-enter-troubleshoot-mode2"/>
 | 
| 482 | 482 |                  <menuitem id="troubleShooting"
 | 
| 483 | 483 |                            oncommand="openTroubleshootingPage()"
 | 
| 484 | -                          hidden="true"
 | 
|
| 485 | 484 |                            data-l10n-id="menu-help-more-troubleshooting-info"
 | 
| 486 | 485 |                            appmenu-data-l10n-id="appmenu-help-more-troubleshooting-info"/>
 | 
| 487 | 486 |                  <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
 |