diff options
author | friendica <info@friendica.com> | 2014-09-07 17:13:44 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-09-07 17:13:44 -0700 |
commit | 4faeebddb22095509149ecd37b548e8ac9151d59 (patch) | |
tree | d64de752385fd6de013121068bef361e72619122 /view/tpl/diaspora_vcard.tpl | |
parent | 3cff9c55ba2afa374cc3cdeecfc3384b3001e527 (diff) | |
download | volse-hubzilla-4faeebddb22095509149ecd37b548e8ac9151d59.tar.gz volse-hubzilla-4faeebddb22095509149ecd37b548e8ac9151d59.tar.bz2 volse-hubzilla-4faeebddb22095509149ecd37b548e8ac9151d59.zip |
Diaspora actually puts the account full name into the "nickname" field of the vcard. They don't put the nickname into the vcard at all. One wonders why even have a nickname field since the fullname is already presented in the next line. This hasn't caused us a problem with Friendica because I'm guessing nobody actually uses this line, though the number of class tags on it makes it seem somewhat important.
Diffstat (limited to 'view/tpl/diaspora_vcard.tpl')
-rw-r--r-- | view/tpl/diaspora_vcard.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/tpl/diaspora_vcard.tpl b/view/tpl/diaspora_vcard.tpl index 9d234a398..f9dac9306 100644 --- a/view/tpl/diaspora_vcard.tpl +++ b/view/tpl/diaspora_vcard.tpl @@ -2,7 +2,7 @@ <dl class='entity_nickname'> <dt>Nickname</dt> <dd> - <a class="nickname url uid" href="{{$diaspora.podloc}}/" rel="me">{{$diaspora.nickname}}</a> + <a class="nickname url uid" href="{{$diaspora.podloc}}/" rel="me">{{$diaspora.fullname}}</a> </dd> </dl> <dl class='entity_fn'> |