Skip to content
Snippets Groups Projects
Commit e002ec51 authored by Moritz Engelmann's avatar Moritz Engelmann
Browse files

add missing parameters for index.search

parent 4e49a79f
Branches
No related merge requests found
......@@ -11,6 +11,11 @@
<xsl:variable name="PageTitleFiltered" select="'module.dptbase.biocol.colgo.indexpage.filtered'"/>
<xsl:variable name="titlepath" select="'/mycoreobject/metadata/def.biocol01'"/>
<xsl:variable name="subselect" select="false()" />
<xsl:variable name="displayFilter" select="false()" />
<xsl:variable name="filterValues" select="node()" />
<xsl:variable name="searchId" select="false()" />
<xsl:include href="indexpage-common.xsl"/>
<xsl:template match="indexpage">
......@@ -19,7 +24,12 @@
<h1 class="text-center">
<xsl:value-of select="mcri18n:translate('module.dptbase.biocol.biocol.indexpage.title')"/>
</h1>
<xsl:call-template name="index.search"/>
<xsl:call-template name="index.search">
<xsl:with-param name="subselect" select="$subselect" />
<xsl:with-param name="displayFilter" select="$displayFilter" />
<xsl:with-param name="filterValues" select="$filterValues" />
<xsl:with-param name="searchId" select="$searchId" />
</xsl:call-template>
<xsl:apply-templates select="results"/>
</div>
</div>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment