Fix removing torrents options in WebUI. They were reversed.

This commit is contained in:
Andrew Resch 2008-01-23 01:53:20 +00:00
parent e231621e12
commit 50e6b343c3
1 changed files with 1 additions and 1 deletions

View File

@ -248,7 +248,7 @@ class torrent_delete:
vars = web.input(data_also = None, torrent_also = None)
data_also = bool(vars.data_also)
torrent_also = bool(vars.torrent_also)
ws.proxy.remove_torrent(torrent_ids, data_also, torrent_also)
ws.proxy.remove_torrent(torrent_ids, torrent_also, data_also)
do_redirect()
class torrent_queue_up: