mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-16 20:05:14 +02:00
fix several probe related issues
This commit is contained in:
parent
37fc7324b7
commit
9634287839
6 changed files with 102 additions and 59 deletions
30
boot.php
30
boot.php
|
@ -803,8 +803,12 @@ function profile_load(&$a, $nickname, $profile = 0) {
|
|||
if(! (x($a->page,'aside')))
|
||||
$a->page['aside'] = '';
|
||||
|
||||
$a->page['aside'] .= profile_sidebar($a->profile);
|
||||
$a->page['aside'] .= contact_block();
|
||||
$block = (((get_config('system','block_public')) && (! local_user()) && (! remote_user())) ? true : false);
|
||||
|
||||
$a->page['aside'] .= profile_sidebar($a->profile, $block);
|
||||
|
||||
if(! $block)
|
||||
$a->page['aside'] .= contact_block();
|
||||
|
||||
return;
|
||||
}}
|
||||
|
@ -827,7 +831,7 @@ function profile_load(&$a, $nickname, $profile = 0) {
|
|||
|
||||
|
||||
if(! function_exists('profile_sidebar')) {
|
||||
function profile_sidebar($profile) {
|
||||
function profile_sidebar($profile, $block = 0) {
|
||||
|
||||
$a = get_app();
|
||||
|
||||
|
@ -846,10 +850,9 @@ function profile_sidebar($profile) {
|
|||
|
||||
$tabs = '';
|
||||
|
||||
$photo = '<div id="profile-photo-wrapper"><img class="photo" src="' . $profile['photo'] . '" alt="' . $profile['name'] . '" /></div>';
|
||||
$photo = '<div id="profile-photo-wrapper"><img class="photo" width="175" height="175" src="' . $profile['photo'] . '" alt="' . $profile['name'] . '" /></div>';
|
||||
|
||||
// don't show connect link to yourself
|
||||
|
||||
$connect = (($profile['uid'] != local_user()) ? '<li><a id="dfrn-request-link" href="dfrn_request/' . $profile['nickname'] . '">' . t('Connect') . '</a></li>' : '');
|
||||
|
||||
// don't show connect link to authenticated visitors either
|
||||
|
@ -877,6 +880,7 @@ function profile_sidebar($profile) {
|
|||
|
||||
}
|
||||
|
||||
|
||||
$gender = ((x($profile,'gender') == 1) ? '<div class="mf"><span class="gender-label">' . t('Gender:') . '</span> <span class="x-gender">' . $profile['gender'] . '</span></div><div class="profile-clear"></div>' : '');
|
||||
|
||||
$pubkey = ((x($profile,'pubkey') == 1) ? '<div class="key" style="display:none;">' . $profile['pubkey'] . '</div>' : '');
|
||||
|
@ -885,13 +889,13 @@ function profile_sidebar($profile) {
|
|||
|
||||
$homepage = ((x($profile,'homepage') == 1) ? '<div class="homepage"><span class="homepage-label">' . t('Homepage:') . ' </span><span class="homepage-url">' . linkify($profile['homepage']) . '</span></div><div class="profile-clear"></div>' : '');
|
||||
|
||||
if($profile['hidewall'] && (! local_user()) && (! remote_user())) {
|
||||
$location = $gender = $marital = $homepage = '';
|
||||
if(($profile['hidewall'] || $block) && (! local_user()) && (! remote_user())) {
|
||||
$location = $pdesc = $connect = $gender = $marital = $homepage = '';
|
||||
}
|
||||
|
||||
$podloc = $a->get_baseurl();
|
||||
$searchable = (($profile['publish'] && $profile['net-publish']) ? 'true' : 'false' );
|
||||
$nickname = $profile['nick'];
|
||||
$nickname = $profile['nickname'];
|
||||
$photo300 = $a->get_baseurl() . '/photo/custom/300/' . $profile['uid'] . '.jpg';
|
||||
$photo100 = $a->get_baseurl() . '/photo/custom/100/' . $profile['uid'] . '.jpg';
|
||||
$photo50 = $a->get_baseurl() . '/photo/custom/50/' . $profile['uid'] . '.jpg';
|
||||
|
@ -902,13 +906,19 @@ function profile_sidebar($profile) {
|
|||
<dl class='entity_nickname'>
|
||||
<dt>Nickname</dt>
|
||||
<dd>
|
||||
<a class="nickname url uid" href="$podloc" rel="me">$nickname</a>
|
||||
<a class="nickname url uid" href="$podloc/" rel="me">$nickname</a>
|
||||
</dd>
|
||||
</dl>
|
||||
<dl class='entity_fn'>
|
||||
<dt>Full name</dt>
|
||||
<dd>
|
||||
<span class='fn'>$fullname</span>
|
||||
</dd>
|
||||
</dl>
|
||||
<dl class="entity_url">
|
||||
<dt>URL</dt>
|
||||
<dd>
|
||||
<a class="url" href="$podloc" id="pod_location" rel="me">$podloc</a>
|
||||
<a class="url" href="$podloc/" id="pod_location" rel="me">$podloc/</a>
|
||||
</dd>
|
||||
</dl>
|
||||
<dl class="entity_photo">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue