Thank you for coming up with this wonderful and very useful module.

I installed it and it is working but there is a small problem.
The teaser break tag

is not exposed when the node
is displayed in full view.

Before installing the paging module, this teaser break tag

didn't show up.

Attached here are the screen shots - teaser view (or summary view)
and full view.
Thank you.

CommentFileSizeAuthor
screen2.jpg181.83 KBcmgui
screen1.jpg20.64 KBcmgui

Comments

justafish’s picture

I have the same issue with 6.x-1.0-beta3 and the dev from 19th April.

jdwfly’s picture

Same problem here with 6.x-1.0-beta3.

gwen’s picture

Status: Active » Closed (fixed)

I ran into this issue on my site also, so I did some digging. It looks it's happening b/c of a bug in the html corrector filter, not b/c of this module. From paging module version 6.x-1.0-beta3 line:

512         if (!$teaser && $node->page_count > 1 && arg(2) != 'print' && arg(2) != 'full'     && $page != 'full') {513           global $pager_page_array, $pager_total;
514           $pager_page_array = explode(',', $page);
515           $pager_total[$element] = $node->page_count;
516           $page = isset($pager_page_array[$element]) ? $pager_page_array[$element] : 0;
517       
518           // Put the current page contents into the node body.
519           $node->content['body']['#value'] = check_markup($node->pages[$page], $node->f    ormat, FALSE);

The above chunk of code is what determines what'll be displayed on the node view. Line 519 calls check_markup() and in my particular instance, I have the html corrector filter enabled for most input formats, so everything is going through the html corrector before display. I found this bug listed for the html corrector: htmlcorrector filter escapes HTML comments

I tried turning off the html corrector to see if that was the problem and sure enough, the comments were not displayed once the text wasn't filtered by html corrector.

I'd guess that this issue can probably be closed as "won't fix" but I'll leave that decision up to the module maintainers in case I'm missing something.

joshmiller’s picture

Status: Closed (fixed) » Closed (won't fix)

That status was confusing. The patch that fixes this in core is #222926: HTML Corrector filter escapes HTML comments