summaryrefslogtreecommitdiff
path: root/render/form.c
diff options
context:
space:
mode:
authorRichard Wilson <rjw@netsurf-browser.org>2006-12-30 00:34:26 +0000
committerRichard Wilson <rjw@netsurf-browser.org>2006-12-30 00:34:26 +0000
commit1353585036eac67feeffdda4de20d91f036c1576 (patch)
tree70b313ef005a4d7945bccaf86ed499d0b3ff77fe /render/form.c
parent98b451ffaeedf9f5b0d4ab249c9f8eb216988eb1 (diff)
downloadnetsurf-1353585036eac67feeffdda4de20d91f036c1576.tar.gz
netsurf-1353585036eac67feeffdda4de20d91f036c1576.tar.bz2
Implement form targets (fix 1619094)
svn path=/trunk/netsurf/; revision=3125
Diffstat (limited to 'render/form.c')
-rw-r--r--render/form.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/render/form.c b/render/form.c
index b9aa654a0..191985694 100644
--- a/render/form.c
+++ b/render/form.c
@@ -38,7 +38,7 @@ static char *form_acceptable_charset(struct form *form);
* \return a new structure, or 0 on memory exhaustion
*/
-struct form *form_new(char *action, form_method method, char *charset,
+struct form *form_new(char *action, char *target, form_method method, char *charset,
char *doc_charset)
{
struct form *form;
@@ -47,6 +47,7 @@ struct form *form_new(char *action, form_method method, char *charset,
if (!form)
return 0;
form->action = action;
+ form->target = target;
form->method = method;
form->accept_charsets = charset;
form->document_charset = doc_charset;