From 712581b3a006dbe65d2a5c6571960c82497fb4f2 Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Mon, 3 May 2004 19:04:42 +0000 Subject: Whenever we have one, pass the cache key to the persist object. That way 2004-05-03 Christian Persch * embed/mozilla/mozilla-embed-persist.cpp: Whenever we have one, pass the cache key to the persist object. That way we don't re-fetch the page on save. Fixes bug #141652. --- embed/mozilla/mozilla-embed-persist.cpp | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'embed/mozilla') diff --git a/embed/mozilla/mozilla-embed-persist.cpp b/embed/mozilla/mozilla-embed-persist.cpp index 41b7ffd4b..87c8dc7ce 100644 --- a/embed/mozilla/mozilla-embed-persist.cpp +++ b/embed/mozilla/mozilla-embed-persist.cpp @@ -228,12 +228,17 @@ impl_save (EphyEmbedPersist *persist) /* Get the current page descriptor */ nsCOMPtr pageDescriptor; - if (flags & EMBED_PERSIST_COPY_PAGE) + if (browser) { browser->GetPageDescriptor(getter_AddRefs(pageDescriptor)); - NS_ENSURE_TRUE (pageDescriptor, FALSE); } + /* if we have COPY_PAGE, we *need* to have a page descriptor, else we'll re-fetch + * the page, which will possibly give a different page than the original which we + * need for view source + */ + NS_ENSURE_TRUE (!(flags & EMBED_PERSIST_COPY_PAGE) || pageDescriptor, FALSE); + if (filename == NULL) { /* Create an header sniffer and do the save */ @@ -247,7 +252,7 @@ impl_save (EphyEmbedPersist *persist) if (!sniffer) return FALSE; webPersist->SetProgressListener(sniffer); - rv = webPersist->SaveURI(inURI, nsnull, nsnull, nsnull, nsnull, tmpFile); + rv = webPersist->SaveURI(inURI, pageDescriptor, nsnull, nsnull, nsnull, tmpFile); if (NS_FAILED (rv)) return FALSE; } else -- cgit v1.2.3