aboutsummaryrefslogtreecommitdiffstats
path: root/embed/ephy-favicon-cache.c
diff options
context:
space:
mode:
authorJean-François Rameau <jframeau@cvs.gnome.org>2006-06-02 03:35:32 +0800
committerJean-François Rameau <jframeau@src.gnome.org>2006-06-02 03:35:32 +0800
commitae4e4736818f442abd435274cb3b75f8da02ad33 (patch)
treee552affa908143effd9f1fba8993eaa8ecf4e5f6 /embed/ephy-favicon-cache.c
parent5d471eec3390f8f188037ac6a3c87a59aa77ec8e (diff)
downloadgsoc2013-epiphany-ae4e4736818f442abd435274cb3b75f8da02ad33.tar
gsoc2013-epiphany-ae4e4736818f442abd435274cb3b75f8da02ad33.tar.gz
gsoc2013-epiphany-ae4e4736818f442abd435274cb3b75f8da02ad33.tar.bz2
gsoc2013-epiphany-ae4e4736818f442abd435274cb3b75f8da02ad33.tar.lz
gsoc2013-epiphany-ae4e4736818f442abd435274cb3b75f8da02ad33.tar.xz
gsoc2013-epiphany-ae4e4736818f442abd435274cb3b75f8da02ad33.tar.zst
gsoc2013-epiphany-ae4e4736818f442abd435274cb3b75f8da02ad33.zip
Don't set cookies from favicon downloads. Bug #337835.
2006-06-01 Jean-François Rameau <jframeau@cvs.gnome.org> * embed/ephy-embed-persist.h: * embed/ephy-favicon-cache.c: (ephy_favicon_cache_download): * embed/mozilla/EphySingle.cpp: (Init, Detach, ExamineCookies, ExamineResponse, ExamineRequest, Observe): * embed/mozilla/EphySingle.h: * embed/mozilla/MozDownload.cpp: (InitiateMozillaDownload): Don't set cookies from favicon downloads. Bug #337835.
Diffstat (limited to 'embed/ephy-favicon-cache.c')
-rw-r--r--embed/ephy-favicon-cache.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/embed/ephy-favicon-cache.c b/embed/ephy-favicon-cache.c
index 9c9e81bf2..6c063bfbd 100644
--- a/embed/ephy-favicon-cache.c
+++ b/embed/ephy-favicon-cache.c
@@ -553,7 +553,9 @@ ephy_favicon_cache_download (EphyFaviconCache *cache,
ephy_embed_persist_set_dest (persist, dest);
ephy_embed_persist_set_flags (persist, EPHY_EMBED_PERSIST_NO_VIEW |
EPHY_EMBED_PERSIST_NO_CERTDIALOGS |
- EPHY_EMBED_PERSIST_DO_CONVERSION);
+ EPHY_EMBED_PERSIST_DO_CONVERSION |
+ EPHY_EMBED_PERSIST_NO_COOKIES
+ );
ephy_embed_persist_set_max_size (persist, EPHY_FAVICON_MAX_SIZE);
ephy_embed_persist_set_source (persist, favicon_url);