mirror of
https://github.com/friendica/friendica
synced 2024-11-10 09:42:54 +00:00
show real profile link location on hover
This commit is contained in:
parent
6c4ad7df3a
commit
ce77c7287e
1 changed files with 3 additions and 3 deletions
|
@ -211,7 +211,7 @@ function conversation(&$a, $items, $mode, $update) {
|
||||||
|
|
||||||
$o .= replace_macros($tpl,array(
|
$o .= replace_macros($tpl,array(
|
||||||
'$id' => $item['item_id'],
|
'$id' => $item['item_id'],
|
||||||
'$linktitle' => sprintf( t('View %s\'s profile'), $profile_name),
|
'$linktitle' => sprintf( t('View %s\'s profile @ %s'), $profile_name, ((strlen($item['author-link'])) ? $item['author-link'] : $item['url'])),
|
||||||
'$profile_url' => $profile_link,
|
'$profile_url' => $profile_link,
|
||||||
'$item_photo_menu' => item_photo_menu($item),
|
'$item_photo_menu' => item_photo_menu($item),
|
||||||
'$name' => $profile_name,
|
'$name' => $profile_name,
|
||||||
|
@ -486,8 +486,8 @@ function conversation(&$a, $items, $mode, $update) {
|
||||||
|
|
||||||
$tmp_item = replace_macros($template,array(
|
$tmp_item = replace_macros($template,array(
|
||||||
'$id' => $item['item_id'],
|
'$id' => $item['item_id'],
|
||||||
'$linktitle' => sprintf( t('View %s\'s profile'), $profile_name),
|
'$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'), $owner_name),
|
'$olinktitle' => sprintf( t('View %s\'s profile @ %s'), $profile_name, ((strlen($item['owner-link'])) ? $item['owner-link'] : $item['url'])),
|
||||||
'$to' => t('to'),
|
'$to' => t('to'),
|
||||||
'$wall' => t('Wall-to-Wall'),
|
'$wall' => t('Wall-to-Wall'),
|
||||||
'$vwall' => t('via Wall-To-Wall:'),
|
'$vwall' => t('via Wall-To-Wall:'),
|
||||||
|
|
Loading…
Reference in a new issue