summaryrefslogtreecommitdiffstats
path: root/docshell
diff options
context:
space:
mode:
authorJustOff <Off.Just.Off@gmail.com>2018-08-21 18:32:45 +0300
committerJustOff <Off.Just.Off@gmail.com>2018-08-21 18:32:45 +0300
commitd39cf6a1125c4103bd98e0c26c04233317c4ec63 (patch)
treea5b0442971d12166142940e0eed3590ea16d0466 /docshell
parent7231eca3c132907c095a66aa8b135a822aeffc7b (diff)
downloadUXP-d39cf6a1125c4103bd98e0c26c04233317c4ec63.tar
UXP-d39cf6a1125c4103bd98e0c26c04233317c4ec63.tar.gz
UXP-d39cf6a1125c4103bd98e0c26c04233317c4ec63.tar.lz
UXP-d39cf6a1125c4103bd98e0c26c04233317c4ec63.tar.xz
UXP-d39cf6a1125c4103bd98e0c26c04233317c4ec63.zip
Update ShouldAddToSessionHistory() rules for "about:newtab" and "about:logopage"
Diffstat (limited to 'docshell')
-rw-r--r--docshell/base/nsDocShell.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/docshell/base/nsDocShell.cpp b/docshell/base/nsDocShell.cpp
index 8eca47495..21234b896 100644
--- a/docshell/base/nsDocShell.cpp
+++ b/docshell/base/nsDocShell.cpp
@@ -12281,7 +12281,11 @@ nsDocShell::ShouldAddToSessionHistory(nsIURI* aURI)
return false;
}
- if (buf.EqualsLiteral("blank") || buf.EqualsLiteral("newtab")) {
+ if (buf.EqualsLiteral("blank") || buf.EqualsLiteral("logopage")
+#ifndef MC_PALEMOON
+ || buf.EqualsLiteral("newtab")
+#endif
+ ) {
return false;
}
}