sudrien
Member
This is user reported, but I have to agree.
As far as I can tell by code, this has to do with a combination of $thread.lastPageNumbers and an apparently do-nothing ellipsis in the thread_list_item template.
It's starting to bug me that a thread that has five pages of comments will have direct links to all but the second page of comments.
As far as I can tell by code, this has to do with a combination of $thread.lastPageNumbers and an apparently do-nothing ellipsis in the thread_list_item template.
Code:
<xen:if is="{$showLastPageNumbers} AND {$thread.lastPageNumbers}">
<span class="itemPageNav">
<span>...</span>
<xen:foreach loop="$thread.lastPageNumbers" value="$pageNumber">
<a href="{xen:link threads, $thread, 'page={$pageNumber}'}">{$pageNumber}</a>
</xen:foreach>
</span>
</xen:if>
The ellipsis - which really should be U+2026 - is shown if pages are skipped or not. I'm sure hiding the ellipsis in certain contexts would be the better behavior, but what contexts I'm not sure of.
Last edited: