reporter = currentUser() and priority = High or priority = Highest
This is the filter that I am using. Why is it giving me other Reporter jobs?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ollie is spot on (and I like his solution better), but note that the following will also work; the problem with your query is the operator order of precedence is interpreting your query differently than you intend.
reporter = currentUser() and (priority = High or priority = Highest)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.