Mercurial > moin > 1.9
changeset 3358:795ee44690a0
ActionBase: default to POST
author | Johannes Berg <johannes AT sipsolutions DOT net> |
---|---|
date | Thu, 20 Mar 2008 16:33:46 +0100 |
parents | bb04265ce89a |
children | dd6293254e4f 97fe3aadef34 |
files | MoinMoin/action/__init__.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/MoinMoin/action/__init__.py Thu Mar 20 16:31:10 2008 +0100 +++ b/MoinMoin/action/__init__.py Thu Mar 20 16:33:46 2008 +0100 @@ -55,7 +55,7 @@ self.form_trigger_label = _("Do it.") # label for the trigger button self.page = Page(request, pagename) self.error = '' - self.method = 'GET' + self.method = 'POST' self.enctype = 'multipart/form-data' # CHECKS -----------------------------------------------------------------