I am trying to edit an xslt file. One line reads:
<xsl:if test="number(./@LatestAuthor) > 0">
The issue I have is that latest author used to be of type int and is now a nullable Guid. How can I edit the xslt file to check if @LatestAuthor is not null? Thanks.