diff options
author | Friendika <info@friendika.com> | 2011-09-16 15:40:34 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-09-16 15:40:34 -0700 |
commit | ce77c7287e8f6bf721c823290ff939b9ab5764e9 (patch) | |
tree | c0e4888e373f51226194d887ad4155a162206925 | |
parent | 6c4ad7df3aebec13406de129bec9e14db7bb2eea (diff) | |
download | volse-hubzilla-ce77c7287e8f6bf721c823290ff939b9ab5764e9.tar.gz volse-hubzilla-ce77c7287e8f6bf721c823290ff939b9ab5764e9.tar.bz2 volse-hubzilla-ce77c7287e8f6bf721c823290ff939b9ab5764e9.zip |
show real profile link location on hover
-rw-r--r-- | include/conversation.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/conversation.php b/include/conversation.php index 6aad2485a..4398d6a5c 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -211,7 +211,7 @@ function conversation(&$a, $items, $mode, $update) { $o .= replace_macros($tpl,array( '$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, '$item_photo_menu' => item_photo_menu($item), '$name' => $profile_name, @@ -486,8 +486,8 @@ function conversation(&$a, $items, $mode, $update) { $tmp_item = replace_macros($template,array( '$id' => $item['item_id'], - '$linktitle' => sprintf( t('View %s\'s profile'), $profile_name), - '$olinktitle' => sprintf( t('View %s\'s profile'), $owner_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 @ %s'), $profile_name, ((strlen($item['owner-link'])) ? $item['owner-link'] : $item['url'])), '$to' => t('to'), '$wall' => t('Wall-to-Wall'), '$vwall' => t('via Wall-To-Wall:'), |