We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a93b927 commit 91fe8eaCopy full SHA for 91fe8ea
1 file changed
ietf/idtracker/views.py
@@ -24,9 +24,12 @@ def myfields(f):
24
def search(request):
25
# for compatability with old tracker form, which has
26
# "all substates" = 6.
27
- args = request.REQUEST
+ args = request.GET.copy()
28
if args.get('sub_state_id', '') == '6':
29
- args['sub_state_id'] = '0'
+ args['sub_state_id'] = ''
30
+ # "job_owner" of "0" means "All/Any"
31
+ if args.get('search_job_owner', '') == '0':
32
+ args['search_job_owner'] = ''
33
form = IDSearch(args)
34
# if there's a post, do the search and supply results to the template
35
searching = False
0 commit comments