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;
|
return $items;
|
||||||
}
|
}
|
||||||
|
|
||||||
function item_photo_menu($item) {
|
function item_photo_menu($item)
|
||||||
|
{
|
||||||
$sub_link = '';
|
$sub_link = '';
|
||||||
$poke_link = '';
|
$poke_link = '';
|
||||||
$contact_url = '';
|
$contact_url = '';
|
||||||
|
@ -929,8 +930,8 @@ function item_photo_menu($item) {
|
||||||
if (!empty($pcid)) {
|
if (!empty($pcid)) {
|
||||||
$contact_url = 'contact/' . $pcid;
|
$contact_url = 'contact/' . $pcid;
|
||||||
$posts_link = $contact_url . '/posts';
|
$posts_link = $contact_url . '/posts';
|
||||||
$block_link = $contact_url . '/block';
|
$block_link = $item['self'] ? '' : $contact_url . '/block';
|
||||||
$ignore_link = $contact_url . '/ignore';
|
$ignore_link = $item['self'] ? '' : $contact_url . '/ignore';
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($cid && !$item['self']) {
|
if ($cid && !$item['self']) {
|
||||||
|
@ -983,7 +984,7 @@ function item_photo_menu($item) {
|
||||||
if (strpos($v, 'javascript:') === 0) {
|
if (strpos($v, 'javascript:') === 0) {
|
||||||
$v = substr($v, 11);
|
$v = substr($v, 11);
|
||||||
$o .= '<li role="menuitem"><a onclick="' . $v . '">' . $k . '</a></li>' . PHP_EOL;
|
$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;
|
$o .= '<li role="menuitem"><a href="' . $v . '">' . $k . '</a></li>' . PHP_EOL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -223,9 +223,12 @@ class Post
|
||||||
$drop = [
|
$drop = [
|
||||||
'dropping' => $dropping,
|
'dropping' => $dropping,
|
||||||
'pagedrop' => $item['pagedrop'],
|
'pagedrop' => $item['pagedrop'],
|
||||||
'select' => DI::l10n()->t('Select'),
|
'select' => DI::l10n()->t('Select'),
|
||||||
'delete' => $delete,
|
'delete' => $delete,
|
||||||
];
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!$item['self']) {
|
||||||
$block = [
|
$block = [
|
||||||
'blocking' => true,
|
'blocking' => true,
|
||||||
'block' => DI::l10n()->t('Block %s', $item['author-name']),
|
'block' => DI::l10n()->t('Block %s', $item['author-name']),
|
||||||
|
|
Loading…
Reference in New Issue
Block a user