Skip to content
Snippets Groups Projects
Commit b3db12fd authored by Demian Katz's avatar Demian Katz
Browse files

Merge pull request #541 from samueloph/patch-1

Catches description using DC
parents c6ebed9d 0d8f00b2
Branches
Tags
No related merge requests found
...@@ -94,6 +94,13 @@ ...@@ -94,6 +94,13 @@
<xsl:value-of select="php:function('VuFind::stripArticles', string(//dc:title[normalize-space()]))"/> <xsl:value-of select="php:function('VuFind::stripArticles', string(//dc:title[normalize-space()]))"/>
</field> </field>
</xsl:if> </xsl:if>
<!-- DESCRIPTION -->
<xsl:if test="//dc:description">
<field name="description">
<xsl:value-of select="//dc:description" />
</field>
</xsl:if>
<!-- PUBLISHER --> <!-- PUBLISHER -->
<xsl:if test="//dc:publisher[normalize-space()]"> <xsl:if test="//dc:publisher[normalize-space()]">
......
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