aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-11-09 00:02:46 -0800
committerfriendica <info@friendica.com>2012-11-09 00:02:46 -0800
commit593d361d2e9dd177d4125a8751540f0afa4b2323 (patch)
tree24ac5d2ad6946b66c50e1767b112b7db7697874f /boot.php
parent517c05700d67eeec8945dbcec3a99d19a9f1f71c (diff)
downloadvolse-hubzilla-593d361d2e9dd177d4125a8751540f0afa4b2323.tar.gz
volse-hubzilla-593d361d2e9dd177d4125a8751540f0afa4b2323.tar.bz2
volse-hubzilla-593d361d2e9dd177d4125a8751540f0afa4b2323.zip
profile/channel page view contacts
Diffstat (limited to 'boot.php')
-rw-r--r--boot.php21
1 files changed, 8 insertions, 13 deletions
diff --git a/boot.php b/boot.php
index 8e8b92593..707545155 100644
--- a/boot.php
+++ b/boot.php
@@ -1280,6 +1280,8 @@ if(! function_exists('profile_sidebar')) {
$a = get_app();
+ $observer = $a->get_observer();
+
$o = '';
$location = false;
$address = false;
@@ -1315,7 +1317,7 @@ if(! function_exists('profile_sidebar')) {
// show edit profile to yourself
- if ($profile['uid'] == local_user()) {
+ if ($profile['uid'] == local_user() && feature_enabled(local_user(),'multi_profiles')) {
$profile['edit'] = array($a->get_baseurl(). '/profiles', t('Profiles'),"", t('Manage/edit profiles'));
$r = q("SELECT * FROM `profile` WHERE `uid` = %d",
@@ -1373,23 +1375,16 @@ if(! function_exists('profile_sidebar')) {
? trim(substr($profile['name'],0,strpos($profile['name'],' '))) : $profile['name']);
$lastname = (($firstname === $profile['name']) ? '' : trim(substr($profile['name'],strlen($firstname))));
- $diaspora = array(
- 'podloc' => $a->get_baseurl(),
- 'searchable' => (($profile['publish']) ? 'true' : 'false' ),
- 'nickname' => $profile['nickname'],
- 'fullname' => $profile['name'],
- 'firstname' => $firstname,
- 'lastname' => $lastname,
- 'photo300' => $a->get_cached_avatar_image($a->get_baseurl() . '/photo/custom/300/' . $profile['uid'] . '.jpg'),
- 'photo100' => $a->get_cached_avatar_image($a->get_baseurl() . '/photo/custom/100/' . $profile['uid'] . '.jpg'),
- 'photo50' => $a->get_cached_avatar_image($a->get_baseurl() . '/photo/custom/50/' . $profile['uid'] . '.jpg'),
- );
+logger('observer' . print_r($observer,true));
+logger('uid' . $profile['uid']);
- if (!$block){
+ if(is_array($observer)
+ && perm_is_allowed($profile['uid'],$observer['xchan_hash'],'view_contacts')) {
$contact_block = contact_block();
}
+
$tpl = get_markup_template('profile_vcard.tpl');
$o .= replace_macros($tpl, array(