When you use the node type filter there is a major problem in the pager_link function :
the links to first, previous ... pages ignores the "&type=" argument.

you can fix it by modifying the pager.inc page:

in the function pager_link on line 383 :

replace the line

function pager_link($from_new, $element, $attributes = array()) {
$q = $_GET['q'];

with :

function pager_link($from_new, $element, $attributes = array()) {
$q = $_GET['q'].(($_GET[type])? '&type='.$_GET[type]:'');

Comments

nancydru’s picture

Status: Active » Postponed (maintainer needs more info)

Have you got a solution that I can implement in this module? I cannot do a core hack.

Also see: http://drupal.org/node/74257

nancydru’s picture

Status: Postponed (maintainer needs more info) » Closed (fixed)

If you have some follow-up, please reopen this issue.