aboutsummaryrefslogtreecommitdiffstats
path: root/view
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2011-12-18 00:14:34 -0800
committerfriendica <info@friendica.com>2011-12-18 00:14:34 -0800
commit978717a2475bbd25d61969e9448dc6f197c8d637 (patch)
tree916b91ef3cefe6db0ba0482da51279c617600623 /view
parent22d59350e958e24cc3b7c49ce8ceae2e3178576e (diff)
downloadvolse-hubzilla-978717a2475bbd25d61969e9448dc6f197c8d637.tar.gz
volse-hubzilla-978717a2475bbd25d61969e9448dc6f197c8d637.tar.bz2
volse-hubzilla-978717a2475bbd25d61969e9448dc6f197c8d637.zip
add webfinger to poco, if present
Diffstat (limited to 'view')
-rw-r--r--view/poco_entry_xml.tpl6
1 files changed, 5 insertions, 1 deletions
diff --git a/view/poco_entry_xml.tpl b/view/poco_entry_xml.tpl
index 8d5515152..c3db9f2b2 100644
--- a/view/poco_entry_xml.tpl
+++ b/view/poco_entry_xml.tpl
@@ -2,6 +2,10 @@
{{ if $entry.id }}<id>$entry.id</id>{{ endif }}
{{ if $entry.displayName }}<displayName>$entry.displayName</displayName>{{ endif }}
{{ if $entry.preferredUsername }}<preferredUsername>$entry.preferredUsername</preferredUsername>{{ endif }}
-{{ if $entry.urls }}<urls><value>$entry.urls.value</value><type>$entry.urls.type</type></urls>{{ endif }}
+{{ if $entry.urls }}
+{{for $entry.urls as $url }}
+<urls><value>$url.value</value><type>$url.type</type></urls>
+{{endfor}}
+{{ endif }}
{{ if $entry.photos }}<photos><value>$entry.photos.value</value><type>$entry.photos.type</type></photos>{{ endif }}
</entry>