Skip to content

Commit

Permalink
fixed bug caused by last commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesse Eichar committed Apr 30, 2015
1 parent 2dda8dc commit f1cb535
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -134,8 +134,8 @@
-->
<xsl:variable name="keywords" select="string-join(
if ($guiLangId and gmd:keyword//*[@locale = concat('#', $guiLangId)]) then
replace(gmd:keyword//*[@locale = concat('#', $guiLangId)], ',', ',,')
else replace(gmd:keyword/*[1], ',', ',,'), ',')"/>
gmd:keyword//*[@locale = concat('#', $guiLangId)]/replace(text(), ',', ',,')
else gmd:keyword/*[1]/replace(text(), ',', ',,'), ',')"/>

<!-- Define the list of transformation mode available. -->
<xsl:variable name="transformations"
Expand Down

0 comments on commit f1cb535

Please sign in to comment.