From dc36eb1a369c3e4e0c2aa3bc15b89ae732be86e9 Mon Sep 17 00:00:00 2001 From: rjy7 Date: Fri, 21 Jan 2011 17:57:56 +0000 Subject: [PATCH] NIHVIVO-1839 Modify parameters on editingLinks macro so can pass in hard-coded value for rdfs:label --- .../freemarker/body/individual/individual--foaf-person.ftl | 4 ++-- .../body/partials/individual/individual-overview.ftl | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/productMods/templates/freemarker/body/individual/individual--foaf-person.ftl b/productMods/templates/freemarker/body/individual/individual--foaf-person.ftl index c0cd4ac0..5f287a82 100644 --- a/productMods/templates/freemarker/body/individual/individual--foaf-person.ftl +++ b/productMods/templates/freemarker/body/individual/individual--foaf-person.ftl @@ -30,7 +30,7 @@ <#list email.statements as statement>
  • email icon - <@p.editingLinks email statement editable /> + <@p.editingLinks "${email.localName}" statement editable />
  • @@ -46,7 +46,7 @@ <#list phone.statements as statement>
  • phone icon${statement.value} - <@p.editingLinks phone statement editable /> + <@p.editingLinks "${phone.localName}" statement editable />
  • diff --git a/productMods/templates/freemarker/body/partials/individual/individual-overview.ftl b/productMods/templates/freemarker/body/partials/individual/individual-overview.ftl index 5ac61c3f..3db9b1f1 100644 --- a/productMods/templates/freemarker/body/partials/individual/individual-overview.ftl +++ b/productMods/templates/freemarker/body/partials/individual/individual-overview.ftl @@ -8,7 +8,7 @@ <#list overview.statements as statement>

    ${statement.value} - <@p.editingLinks overview statement editable /> + <@p.editingLinks "${overview.localName}" statement editable />

    \ No newline at end of file