I think the solution was about filtering the query so that the pagination bit is not overwritten
global $wp_query;
$args = array_merge( $wp_query->query, array( 'cat'=>3 ) );
query_posts( $args );
I think the solution was about filtering the query so that the pagination bit is not overwritten
global $wp_query;
$args = array_merge( $wp_query->query, array( 'cat'=>3 ) );
query_posts( $args );