Changes for NIHVIVO-3629: removing spaces in the href links and ids for property groups and replacing them with underscores.

This commit is contained in:
hjkhjk54 2012-02-23 18:15:04 +00:00
parent 10908a7a65
commit c4091eaa1f
3 changed files with 11 additions and 3 deletions

View file

@ -228,4 +228,8 @@ name will be used as the label. -->
</#list>
</#macro>
<#--Property group names may have spaces in them, replace spaces with underscores for html id/hash-->
<#function createPropertyGroupHtmlId propertyGroupName>
<#return propertyGroupName?replace(" ", "_")>
</#function>