On plugin-web/stylesheets/utils.xsl, line 86,
<xsl:if test="$current-page/@index < ($nbPages - 2)">
should include the third page starting from the end :
<xsl:if test="$current-page/@index <= ($nbPages - 2)">
On plugin-web/stylesheets/utils.xsl, line 86,
<xsl:if test="$current-page/@index < ($nbPages - 2)">
should include the third page starting from the end :
<xsl:if test="$current-page/@index <= ($nbPages - 2)">