Split last_name and first_name for buddies in UDDF export

Signed-off-by: Marton Long <martin@longhome.co.uk>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Martin Long 2014-12-09 23:24:51 +00:00 committed by Dirk Hohndel
parent 7367ccfb09
commit 721760e532

View file

@ -73,8 +73,11 @@
</xsl:attribute> </xsl:attribute>
<personal> <personal>
<first_name> <first_name>
<xsl:value-of select="."/> <xsl:value-of select="substring-before(., ' ')"/>
</first_name> </first_name>
<last_name>
<xsl:value-of select="substring-after(., ' ')"/>
</last_name>
</personal> </personal>
</buddy> </buddy>
</xsl:for-each> </xsl:for-each>