Relevant snippet follows:
-page_query $query \
-orderby {
code {
orderby code
}
} \
-filters {
code {
label "something"
values {{a a} {b b}}
where_clause {code = :code}
}
}
When orderby, filters, and pagination switches are present, the page numbers contain parameters for filter names that are the same on filters and orderby. So instead of the link to page 2 not having a code=something due to a cleared filter, it has the first value in the values list instead.
Is this a bug where it should barf with a warning of same names or is this a feature where you can combine some variable in the orderby and filters clauses?