Ticket #2846 (closed defect: fixed)
WSGI merge removed `req.args.getlist()`, breaking WebAdmin
| Reported by: | athomas | Owned by: | cmlenz |
|---|---|---|---|
| Priority: | low | Milestone: | 0.10 |
| Component: | general | Version: | devel |
| Severity: | minor | Keywords: | webadmin |
| Cc: |
Description
This patch seems to fix it:
-
webadmin/plugin.py
125 125 126 126 def _do_update(self, req): 127 127 """Update component enablement.""" 128 components = req.args .getlist('component')129 enabled = req.args .getlist('enable')128 components = req.args['component'] 129 enabled = req.args['enable'] 130 130 changes = False 131 131 132 132 # FIXME: this needs to be more intelligent and minimize multiple
Attachments
Change History
Note: See
TracTickets for help on using
tickets.


