Hi,
I have an array of Page IDs ($matches) which I'm using in a PageArray ($matches_limit):
$matches_limit = $pages->find("id=$matches, limit=$page_limit");
This is working fine but I need to maintain the sort order of $matches, however $matches_limit reorders the $matches (I guess to sort=sort).
Is it possible somehow to maintain the order $matches when outputted in the pagearray?