The "S" is missing on the word illutration, Line 4 and 6
<xsl:template name="profile-image"> <div class="photo-profil"> <xsl:choose> <xsl:when test="metadata/illutration/image"> <xsl:call-template name="common-content-body-image"> <xsl:with-param name="image" select="metadata/illutration/image"/> <xsl:with-param name="alternative" select="alt-text"/> <xsl:with-param name="maxWidth" select="'240'"/> <xsl:with-param name="maxHeight" select="'240'"/> <xsl:with-param name="type" select="'cropped'"/> </xsl:call-template> </xsl:when> <xsl:otherwise> <img> <xsl:attribute name="src"> <xsl:call-template name="user-image-default-url"/> </xsl:attribute> </img> </xsl:otherwise> </xsl:choose> </div> </xsl:template>