mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-24 07:06:41 +00:00
fix bug in arg handling around 'delete' button in directory view
the code composing the form providing the 'delete' button in a dir view was broken in that it tried to put some of the arguments into the url query, rather than as the form's post args. worse, nevow was kind enough to escape the querystring making it invalid.
This commit is contained in:
parent
908cc0e481
commit
15c3055176
@ -74,9 +74,10 @@ class Directory(rend.Page):
|
||||
# this creates a button which will cause our child__delete method
|
||||
# to be invoked, which deletes the file and then redirects the
|
||||
# browser back to this directory
|
||||
del_url = url.here.add("t", "delete").add("name", name)
|
||||
del_url = del_url.add("when_done", url.here)
|
||||
delete = T.form(action=del_url, method="post")[
|
||||
delete = T.form(action=url.here, method="post")[
|
||||
T.input(type='hidden', name='t', value='delete'),
|
||||
T.input(type='hidden', name='name', value=name),
|
||||
T.input(type='hidden', name='when_done', value=url.here),
|
||||
T.input(type='submit', value='del', name="del"),
|
||||
]
|
||||
else:
|
||||
|
Loading…
Reference in New Issue
Block a user