summaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2003-12-26 16:20:57 +0000
committerJames Bursa <james@netsurf-browser.org>2003-12-26 16:20:57 +0000
commit894703b53b27a25d58d9a6fa77e99d967e9588f6 (patch)
tree73a157f9dead6fe9bac8421f63e9b26066c999fd /css
parenteb7cc625e71a9e761b22bd6fb94d93fbb929304e (diff)
downloadnetsurf-894703b53b27a25d58d9a6fa77e99d967e9588f6.tar.gz
netsurf-894703b53b27a25d58d9a6fa77e99d967e9588f6.tar.bz2
[project @ 2003-12-26 16:20:57 by bursa]
Enable cookies. svn path=/import/netsurf/; revision=443
Diffstat (limited to 'css')
-rw-r--r--css/css.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/css/css.c b/css/css.c
index f719eca7c..63be78133 100644
--- a/css/css.c
+++ b/css/css.c
@@ -169,7 +169,7 @@ void css_revive(struct content *c, unsigned int width, unsigned int height)
c->data.css.import_content[i] = fetchcache(
c->data.css.import_url[i], c->url,
css_atimport_callback, c, i,
- c->width, c->height, true, 0, 0);
+ c->width, c->height, true, 0, 0, false);
if (c->data.css.import_content[i] == 0)
continue;
if (c->data.css.import_content[i]->status != CONTENT_STATUS_DONE)
@@ -335,7 +335,7 @@ void css_atimport(struct content *c, struct css_node *node)
c->data.css.import_url[i] = url1;
c->data.css.import_content[i] = fetchcache(
c->data.css.import_url[i], c->url, css_atimport_callback,
- c, i, c->width, c->height, true, 0, 0);
+ c, i, c->width, c->height, true, 0, 0, false);
if (c->data.css.import_content[i] &&
c->data.css.import_content[i]->status != CONTENT_STATUS_DONE)
c->active++;
@@ -383,7 +383,7 @@ void css_atimport_callback(content_msg msg, struct content *css,
c->data.css.import_url[i] = xstrdup(error);
c->data.css.import_content[i] = fetchcache(
c->data.css.import_url[i], c->url, css_atimport_callback,
- c, i, css->width, css->height, true, 0, 0);
+ c, i, css->width, css->height, true, 0, 0, false);
if (c->data.css.import_content[i] &&
c->data.css.import_content[i]->status != CONTENT_STATUS_DONE)
c->active++;