Bug 339032: Safebrowsing: 'Get me out of here' should go to the default home page, r=mconnor

git-svn-id: svn://10.0.0.236/trunk@208533 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
gavin%gavinsharp.com
2006-08-26 17:10:29 +00:00
parent afc1dd8c91
commit 2fc6916fd9

View File

@@ -159,14 +159,14 @@ PROT_PhishMsgDisplayerBase.prototype.acceptAction = function() {
}
/**
* Get the url for "Get me out of here." This is the user's home page if
* one is set, ow, about:blank.
* Get the url for "Get me out of here." This is the browser's default home
* page, or, about:blank.
* @return String url
*/
PROT_PhishMsgDisplayerBase.prototype.getMeOutOfHereUrl_ = function() {
// Try to get their homepage from prefs.
var prefs = Cc["@mozilla.org/preferences-service;1"]
.getService(Ci.nsIPrefService).getBranch(null);
.getService(Ci.nsIPrefService).getDefaultBranch(null);
var url = "about:blank";
try {