This simple change allows interfaces like Book's to link back to a URL like node/123?page=0,last

line 521 in paging.module

       if($pager_page_array[1]=='last'){
            $pager_page_array[1] = ($pager_total[$element] - 1);
          }

The user then ends up on the previous 'paged' page, not the first paged page of that node. Not sure if this approach translates to the ajax option, but it's working for us.

Comments

jenlampton’s picture

Version: 6.x-1.0-beta3 » 7.x-1.x-dev

Pushing all feature requests to 7.x.

jenlampton’s picture

Status: Active » Closed (won't fix)

I don't think we're going to support this, but if you'd like to post a patch to this issue you are welcome to maintain a patched version of your own module.

Out of curiosity, why can't you add links to the specific page of the node you'd like people to see, for example, node/123?page=1, node/123?page=2 or node/123?page=3?