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)">
Indeed, the "first" button appears when "1" is not visible
But there is a moment where both "last" and 10 buttons appears (for a ten pages search)