Commit e61f2580 authored by Bryan Hoyt's avatar Bryan Hoyt

Don't try to parse filter strings that don't contain any separators

parent ce3a8dac
......@@ -967,6 +967,8 @@ class BaseModelView(BaseView, ActionsMixin):
for n in request.args:
if not n.startswith('flt'):
continue
if '_' not in n:
continue
pos, filter_label = n[3:].split('_', 1)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment