NIHVIVO-1338 Updated to use new profileUrl method

This commit is contained in:
nac26 2011-01-04 15:39:05 +00:00
parent 6a224d2c0c
commit 9dc267a397

View file

@ -13,10 +13,10 @@
<#local linkedIndividual> <#local linkedIndividual>
<#if statement.person??> <#if statement.person??>
<a href="${url(statement.person)}">${statement.personName}</a> <a href="${profileUrl(statement.person)}">${statement.personName}</a>
<#else> <#else>
<#-- This shouldn't happen, but we must provide for it --> <#-- This shouldn't happen, but we must provide for it -->
<a href="${url(statement.position)}">${statement.positionName}</a> (no linked person) <a href="${profileUrl(statement.position)}">${statement.positionName}</a> (no linked person)
</#if> </#if>
</#local> </#local>