fix some displayed links that were wonky
This commit is contained in:
parent
d06c21dc39
commit
b8c92a0a42
@ -49,6 +49,7 @@ class Item extends BaseObject {
|
||||
// fixme
|
||||
$this->writable = ($this->get_data_value('writable') || $this->get_data_value('self'));
|
||||
// FIXME - base this on observer permissions
|
||||
|
||||
$this->writable = ((local_user() && $channel['channel_hash'] === $item['owner_xchan']) ? true : false);
|
||||
|
||||
|
||||
@ -227,8 +228,8 @@ class Item extends BaseObject {
|
||||
'body' => $body_e,
|
||||
'text' => strip_tags($body_e),
|
||||
'id' => $this->get_id(),
|
||||
'linktitle' => sprintf( t('View %s\'s profile @ %s'), $profile_name, ((strlen($item['author-link'])) ? $item['author-link'] : $item['url'])),
|
||||
'olinktitle' => sprintf( t('View %s\'s profile @ %s'), $this->get_owner_name(), ((strlen($item['owner-link'])) ? $item['owner-link'] : $item['url'])),
|
||||
'linktitle' => sprintf( t('View %s\'s profile - %s'), $profile_name, $item['author']['xchan_addr']),
|
||||
'olinktitle' => sprintf( t('View %s\'s profile - %s'), $this->get_owner_name(), $item['owner']['xchan_addr']),
|
||||
'to' => t('to'),
|
||||
'wall' => t('Wall-to-Wall'),
|
||||
'vwall' => t('via Wall-To-Wall:'),
|
||||
|
@ -90,8 +90,12 @@ EOT;
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
$nav['lock'] = array('rmagic','',(($observer) ? 'lock' : 'unlock'), (($observer) ? $observer['xchan_addr'] : t('Click to authenticate to your home hub')));
|
||||
if($observer)
|
||||
$nav['lock'] = array('logout','','lock',
|
||||
sprintf( t('%s - click to logout'), $observer['xchan_addr']));
|
||||
else
|
||||
$nav['lock'] = array('rmagic','','unlock',
|
||||
t('Click to authenticate to your home hub'));
|
||||
|
||||
/**
|
||||
* "Home" should also take you home from an authenticated remote profile connection
|
||||
|
Reference in New Issue
Block a user