Skip to content
Snippets Groups Projects
Commit 2dc32ecf authored by Dalmon Ian's avatar Dalmon Ian
Browse files

Fix results per page issue on the theme Participatorio-mobile

parent 038630dc
Branches
No related tags found
No related merge requests found
...@@ -991,6 +991,27 @@ ...@@ -991,6 +991,27 @@
</xsl:choose> </xsl:choose>
</li> </li>
</xsl:template> </xsl:template>
<xsl:template match="dri:xref">
<a>
<xsl:if test="@target">
<xsl:attribute name="href"><xsl:value-of select="@target"/></xsl:attribute>
<xsl:if test="substring(@target, 1, 4) = 'rpp='">
<xsl:attribute name="href"><xsl:value-of select="concat($mobile-url, '/', $page-url, '?query=', '&amp;', 'submit=Go', '&amp;', @target)" /></xsl:attribute>
</xsl:if>
</xsl:if>
<xsl:if test="@rend">
<xsl:attribute name="class"><xsl:value-of select="@rend"/></xsl:attribute>
</xsl:if>
<xsl:if test="@n">
<xsl:attribute name="name"><xsl:value-of select="@n"/></xsl:attribute>
</xsl:if>
<xsl:apply-templates />
</a>
</xsl:template>
<!-- ******************************************************************** --> <!-- ******************************************************************** -->
</xsl:stylesheet> </xsl:stylesheet>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment