Mercurial > p > roundup > code
diff roundup/cgi/client.py @ 2010:1b11ffd8015e
forward-porting of fixed edit action / parsePropsFromForm...
to handle index-page edits better
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Fri, 13 Feb 2004 01:32:37 +0000 |
| parents | fc52d57c6c3e |
| children | 9cc7b7d0ca3f |
line wrap: on
line diff
--- a/roundup/cgi/client.py Fri Feb 13 01:31:03 2004 +0000 +++ b/roundup/cgi/client.py Fri Feb 13 01:32:37 2004 +0000 @@ -1,4 +1,4 @@ -# $Id: client.py,v 1.156 2004-02-11 23:55:09 richard Exp $ +# $Id: client.py,v 1.157 2004-02-13 01:32:37 richard Exp $ """WWW request handler (also used in the stand-alone server). """ @@ -637,5 +637,6 @@ except MessageSendError, e: self.error_message.append(str(e)) - def parsePropsFromForm(self): - return FormParser(self).parse() + def parsePropsFromForm(self, create=False): + return FormParser(self).parse(create=create) +
