From 25213dca24dc1c4edfb49fbe070ccea5d2d73399 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Fri, 2 Feb 2007 23:08:13 +0000 Subject: Fix handling of cookies in unverifiable transactions caused by a redirect from a fetch into a browser window which was varifiable. svn path=/trunk/netsurf/; revision=3165 --- css/css.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'css') diff --git a/css/css.c b/css/css.c index 15ac9511c..ac988d321 100644 --- a/css/css.c +++ b/css/css.c @@ -877,7 +877,7 @@ void css_atimport(struct content *c, struct css_node *node) fetchcache_go(c->data.css.import_content[i], c->url, css_atimport_callback, (intptr_t) c, i, c->width, c->height, - 0, 0, false); + 0, 0, false, c->url); } free(url); @@ -949,7 +949,7 @@ void css_atimport_callback(content_msg msg, struct content *css, c->url, css_atimport_callback, (intptr_t) c, i, css->width, css->height, - 0, 0, false); + 0, 0, false, c->url); } break; -- cgit v1.2.3