diff options
-rw-r--r-- | xslt/normalize.xsl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/xslt/normalize.xsl b/xslt/normalize.xsl index 071a69e2..2ae8a1e1 100644 --- a/xslt/normalize.xsl +++ b/xslt/normalize.xsl @@ -67,10 +67,12 @@ If You do not accept these Terms, then You must not continue to use this Metadat <xsl:if test="$org='true' and not(md:Organization)"> <xsl:apply-templates select="document($orginfo)"/> </xsl:if> + <xsl:apply-templates select="md:Organization"/> <xsl:if test="$defaultContact='true' and not(md:ContactPerson)"> <md:ContactPerson contactType="technical"><md:EmailAddress>operations@swamid.se</md:EmailAddress></md:ContactPerson> </xsl:if> - <xsl:apply-templates select="md:Organization|md:ContactPerson|md:AdditionalMetadataLocation"/> + <xsl:apply-templates select="md:ContactPerson"/> + <xsl:apply-templates select="md:AdditionalMetadataLocation"/> </md:EntityDescriptor> </xsl:template> |