From 001ce57253f99e1a988a630ddf6bb05815bace80 Mon Sep 17 00:00:00 2001 From: stanley lieber Date: Sun, 2 Oct 2011 20:57:32 -0500 Subject: [PATCH] mothra: add , fixes wikipedia form submission --- sys/src/cmd/mothra/forms.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys/src/cmd/mothra/forms.c b/sys/src/cmd/mothra/forms.c index a68b972eb..9c68b94ae 100644 --- a/sys/src/cmd/mothra/forms.c +++ b/sys/src/cmd/mothra/forms.c @@ -169,6 +169,8 @@ void rdform(Hglob *g){ f->name=strdup("no-name"); } } + else if(cistrcmp(s, "search")==0) + f->type=TYPEIN; else if(cistrcmp(s, "checkbox")==0) f->type=CHECK; else if(cistrcmp(s, "radio")==0)