Remove block/ignore links from contact/item action menus for self
This commit is contained in:
parent
77cea819fb
commit
98c2ca34f5
|
@ -888,7 +888,8 @@ function conversation_fetch_items(array $parent, array $items, array $condition,
|
|||
return $items;
|
||||
}
|
||||
|
||||
function item_photo_menu($item) {
|
||||
function item_photo_menu($item)
|
||||
{
|
||||
$sub_link = '';
|
||||
$poke_link = '';
|
||||
$contact_url = '';
|
||||
|
@ -929,8 +930,8 @@ function item_photo_menu($item) {
|
|||
if (!empty($pcid)) {
|
||||
$contact_url = 'contact/' . $pcid;
|
||||
$posts_link = $contact_url . '/posts';
|
||||
$block_link = $contact_url . '/block';
|
||||
$ignore_link = $contact_url . '/ignore';
|
||||
$block_link = $item['self'] ? '' : $contact_url . '/block';
|
||||
$ignore_link = $item['self'] ? '' : $contact_url . '/ignore';
|
||||
}
|
||||
|
||||
if ($cid && !$item['self']) {
|
||||
|
@ -983,7 +984,7 @@ function item_photo_menu($item) {
|
|||
if (strpos($v, 'javascript:') === 0) {
|
||||
$v = substr($v, 11);
|
||||
$o .= '<li role="menuitem"><a onclick="' . $v . '">' . $k . '</a></li>' . PHP_EOL;
|
||||
} elseif ($v!='') {
|
||||
} elseif ($v) {
|
||||
$o .= '<li role="menuitem"><a href="' . $v . '">' . $k . '</a></li>' . PHP_EOL;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -226,6 +226,9 @@ class Post
|
|||
'select' => DI::l10n()->t('Select'),
|
||||
'delete' => $delete,
|
||||
];
|
||||
}
|
||||
|
||||
if (!$item['self']) {
|
||||
$block = [
|
||||
'blocking' => true,
|
||||
'block' => DI::l10n()->t('Block %s', $item['author-name']),
|
||||
|
|
Loading…
Reference in a new issue