I am using the following on a category specific template file:
<?php
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts($paged . "&showposts=5&cat=3&paged=$paged");
?>
The first couple pages work, but when I click the 3rd or any more pages, I get nothing found?
Did something change with paging using the method above?