I upgrade to EE 2.1.3 Build 20101220 and noticed an issue with pagination.
The channel:entries query is returning the correct number of entries—and the pagination links display correctly on Page 1—example: Your search returned 17 article—Page 1 of 2
When I click the Next link the result set now shows ALL articles in the channel—Your search returned 24 articles—Page 1 of 3
What I did notice is that the Next Link is going to /news/results/P10—wasn’t this P1 in the previous version?
In either case pagination was working in EE 2.1.1
{exp:channel:entries channel="news" limit="10" paginate="top" dynamic_parameters="category"}
{if paginate}{paginate}
<div id="paginatation-top">
<div class="paginate">
{if previous_page}<a href="http://{auto_path}" class="prev">Prev</a>{/if}
Page {current_page} of {total_pages}
{if next_page}<a href="http://{auto_path}" class="next">Next</a>{/if}
</div>
</div>
{/paginate}{/if}
{if {count} == 1}
<div id="titlebox">
<table>
<tr>
<td class="alignleft">{site_url}images/site/news_header.png</td>
<td class="aligncenter">Your search returned <strong>{absolute_results} article{if {absolute_results} > 1}s{/if}</strong>.</td>
<td class="alignright"></td>
</tr>
</table>
</div>
{/if}
{snp_article}
{/exp:channel:entries}