From c7f70a8cf6b1aa43354e96be70c19a19b394d539 Mon Sep 17 00:00:00 2001 From: Richard Wilson Date: Fri, 8 Sep 2006 20:19:08 +0000 Subject: Stop iframes from all getting the same content. svn path=/trunk/netsurf/; revision=2935 --- desktop/browser.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'desktop') diff --git a/desktop/browser.c b/desktop/browser.c index 7284bbc1e..a6caa14d1 100644 --- a/desktop/browser.c +++ b/desktop/browser.c @@ -243,8 +243,8 @@ void browser_window_create_iframes(struct browser_window *bw, index = 0; for (cur = iframe; cur; cur = cur->next) { window = &(bw->iframes[index++]); - if (iframe->url) - browser_window_go(window, iframe->url, NULL, true); + if (cur->url) + browser_window_go(window, cur->url, NULL, true); } } -- cgit v1.2.3