about:about

Bug 56061
r=bryner@brianryner.com
sr=darin@meer.net
This commit is contained in:
caillon%returnzero.com 2006-09-15 09:51:51 +00:00
parent 188182f9ce
commit 5655b0e966

View File

@ -57,7 +57,6 @@ struct RedirEntry {
PRBool dropChromePrivs; // if PR_TRUE, the page will not have chrome privileges
};
// if you add something here, make sure you update the total
/*
Entries with dropChromePrivs == PR_FALSE will run with chrome
privileges. This is potentially dangerous. Please use PR_TRUE
@ -72,6 +71,7 @@ static RedirEntry kRedirMap[] = {
{ "config", "chrome://global/content/config.xul", PR_FALSE },
{ "logo", "chrome://global/content/logo.gif", PR_TRUE },
{ "buildconfig", "chrome://global/content/buildconfig.html", PR_TRUE },
{ "about", "chrome://global/content/aboutAbout.html", PR_FALSE }
};
static const int kRedirTotal = sizeof(kRedirMap)/sizeof(*kRedirMap);