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
Comment #1
nancydruHave you got a solution that I can implement in this module? I cannot do a core hack.
Also see: http://drupal.org/node/74257
Comment #2
nancydruIf you have some follow-up, please reopen this issue.