diff options
-rw-r--r-- | base/content/utilityOverlay.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/content/utilityOverlay.js b/base/content/utilityOverlay.js index c8d8521..cf39016 100644 --- a/base/content/utilityOverlay.js +++ b/base/content/utilityOverlay.js @@ -34,7 +34,7 @@ var gBidiUI = false; * Determines whether the given url is considered a special URL for new tabs. */ function isBlankPageURL(aURL) { - return aURL == "about:blank" || aURL == "about:newtab" || aURL == "about:logopage"; + return aURL == "about:blank" || aURL == BROWSER_NEW_TAB_URL || aURL == "about:logopage"; } function getBrowserURL() |