and the result was:
<ul><li><a href="/application/plugin_wiki/page/home">Home</a></li></ul>
but trying localy with the new version 1.81.5 the result is:
<ul><li><a href="/application/plugin_wiki/page.load/home">Home</a></li></ul>
Notice, that I am doing it with ajax() to load the item list
$('#search').keyup(function(){
ajax("{{=URL(r=request, c='plugin_wiki',f='page.load/searchpages')}}",['search'],'target');
return false;
});
Why .load is being appended to the url generated by URL() ?
Something that can be done to continue as before?
Tks