add first,last to D* vcard
This commit is contained in:
parent
0e401b5ad8
commit
9f4d3bf567
2 changed files with 20 additions and 1 deletions
8
boot.php
8
boot.php
|
@ -8,7 +8,7 @@ require_once("include/pgettext.php");
|
||||||
require_once('include/nav.php');
|
require_once('include/nav.php');
|
||||||
|
|
||||||
define ( 'FRIENDIKA_PLATFORM', 'Free Friendika');
|
define ( 'FRIENDIKA_PLATFORM', 'Free Friendika');
|
||||||
define ( 'FRIENDIKA_VERSION', '2.3.1128' );
|
define ( 'FRIENDIKA_VERSION', '2.3.1129' );
|
||||||
define ( 'DFRN_PROTOCOL_VERSION', '2.21' );
|
define ( 'DFRN_PROTOCOL_VERSION', '2.21' );
|
||||||
define ( 'DB_UPDATE_VERSION', 1094 );
|
define ( 'DB_UPDATE_VERSION', 1094 );
|
||||||
|
|
||||||
|
@ -920,11 +920,17 @@ function profile_sidebar($profile, $block = 0) {
|
||||||
$location = $pdesc = $connect = $gender = $marital = $homepage = False;
|
$location = $pdesc = $connect = $gender = $marital = $homepage = False;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$firstname = ((strpos($profile['name'],' '))
|
||||||
|
? trim(substr($profile['name'],0,strpos($profile['name'],' '))) : $profile['name']);
|
||||||
|
$lastname = (($firstname === $profile['name']) ? '' : trim(substr($profile['name'],strlen($firstname))));
|
||||||
|
|
||||||
$diaspora = array(
|
$diaspora = array(
|
||||||
'podloc' => $a->get_baseurl(),
|
'podloc' => $a->get_baseurl(),
|
||||||
'searchable' => (($profile['publish'] && $profile['net-publish']) ? 'true' : 'false' ),
|
'searchable' => (($profile['publish'] && $profile['net-publish']) ? 'true' : 'false' ),
|
||||||
'nickname ' => $profile['nickname'],
|
'nickname ' => $profile['nickname'],
|
||||||
'fullname' => $profile['name'],
|
'fullname' => $profile['name'],
|
||||||
|
'firstname' => $firstname,
|
||||||
|
'lastname' => $lastname,
|
||||||
'photo300' => $a->get_baseurl() . '/photo/custom/300/' . $profile['uid'] . '.jpg',
|
'photo300' => $a->get_baseurl() . '/photo/custom/300/' . $profile['uid'] . '.jpg',
|
||||||
'photo100' => $a->get_baseurl() . '/photo/custom/100/' . $profile['uid'] . '.jpg',
|
'photo100' => $a->get_baseurl() . '/photo/custom/100/' . $profile['uid'] . '.jpg',
|
||||||
'photo50' => $a->get_baseurl() . '/photo/custom/50/' . $profile['uid'] . '.jpg',
|
'photo50' => $a->get_baseurl() . '/photo/custom/50/' . $profile['uid'] . '.jpg',
|
||||||
|
|
|
@ -11,6 +11,19 @@
|
||||||
<span class='fn'>$diaspora.fullname</span>
|
<span class='fn'>$diaspora.fullname</span>
|
||||||
</dd>
|
</dd>
|
||||||
</dl>
|
</dl>
|
||||||
|
|
||||||
|
<dl class='entity_given_name'>
|
||||||
|
<dt>First name</dt>
|
||||||
|
<dd>
|
||||||
|
<span class='given_name'>$diaspora.firstname</span>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<dl class='entity_family_name'>
|
||||||
|
<dt>Family name</dt>
|
||||||
|
<dd>
|
||||||
|
<span class='family_name'>$diaspora.lastname</span>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
<dl class="entity_url">
|
<dl class="entity_url">
|
||||||
<dt>URL</dt>
|
<dt>URL</dt>
|
||||||
<dd>
|
<dd>
|
||||||
|
|
Loading…
Reference in a new issue