I am having problems creating links in XMLUI, I created a link that returns a simple order:
<a href="discover?query=&submit=Buscar&filtertype_0=subject&filter_0=&filter_relational_operator_0=equals&rpp=10&sort_by=dc.title_sort&order=asc"></a>
but when I try to run, returns me:
You need to escape the &
characters in the href as &
so that they will be parsed correctly.
<a href="discover?query=&submit=Buscar&filtertype_0=subject&filter_0=&filter_relational_operator_0=equals&rpp=10&sort_by=dc.title_sort&order=asc"></a>