Oops, forgot to rename INTERNAL_LOAD_NO_REFERRER to INTERNAL_LOAD_DONT_SEND_REFERRER.

git-svn-id: svn://10.0.0.236/branches/AVIARY_1_0_20040515_BRANCH@164824 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
jst%mozilla.jstenback.com
2004-11-03 01:17:42 +00:00
parent 3e48e80dc1
commit 2b028e40be
2 changed files with 5 additions and 5 deletions

View File

@@ -731,7 +731,7 @@ nsDocShell::LoadURI(nsIURI * aURI,
flags |= INTERNAL_LOAD_FLAGS_INHERIT_OWNER;
if (!sendReferrer)
flags |= INTERNAL_LOAD_FLAGS_NO_REFERRER;
flags |= INTERNAL_LOAD_FLAGS_DONT_SEND_REFERRER;
rv = InternalLoad(aURI,
referrer,
@@ -5472,7 +5472,7 @@ nsDocShell::InternalLoad(nsIURI * aURI,
mLSHE = aSHEntry;
rv = DoURILoad(aURI, aReferrer,
!(aFlags & INTERNAL_LOAD_FLAGS_NO_REFERRER),
!(aFlags & INTERNAL_LOAD_FLAGS_DONT_SEND_REFERRER),
owner, aTypeHint, aPostData, aHeadersData, aFirstParty,
aDocShell, aRequest);