From: <svn...@op...> - 2010-02-28 17:39:28
|
Author: scriptor Date: Sun Feb 28 18:39:19 2010 New Revision: 6042 URL: http://www.opensync.org/changeset/6042 Log: Fixed validation error with the CalendarScale element. Modified: plugins/ldap-sync/src/xslt/ldap_event2xmlformat_event.xsl Modified: plugins/ldap-sync/src/xslt/ldap_event2xmlformat_event.xsl ============================================================================== --- plugins/ldap-sync/src/xslt/ldap_event2xmlformat_event.xsl Sun Feb 28 18:39:09 2010 (r6041) +++ plugins/ldap-sync/src/xslt/ldap_event2xmlformat_event.xsl Sun Feb 28 18:39:19 2010 (r6042) @@ -253,7 +253,9 @@ </xsl:for-each> </xsl:for-each> - <xsl:value-of select="subentry/CalendarScale" /> + <xsl:element name="Content"> + <xsl:value-of select="subentry/CalendarScale" /> + </xsl:element> </xsl:element> </xsl:if> |