diff options
author | Friendika <info@friendika.com> | 2011-06-17 23:06:42 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-06-17 23:06:42 -0700 |
commit | 9e2db5d5a614b5dedcd63cdc966c1382a1dfcd7a (patch) | |
tree | 6c8c81e54f7950c23bce552de355cdb675fd6308 /include | |
parent | 787f079d13070dd691af8fcdde76de2649dcbb0f (diff) | |
download | volse-hubzilla-9e2db5d5a614b5dedcd63cdc966c1382a1dfcd7a.tar.gz volse-hubzilla-9e2db5d5a614b5dedcd63cdc966c1382a1dfcd7a.tar.bz2 volse-hubzilla-9e2db5d5a614b5dedcd63cdc966c1382a1dfcd7a.zip |
tooltip for selecting items
Diffstat (limited to 'include')
-rw-r--r-- | include/conversation.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/conversation.php b/include/conversation.php index 0d3123831..b536fed5f 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -392,7 +392,7 @@ function conversation(&$a, $items, $mode, $update) { if((intval($item['contact-id']) && $item['contact-id'] == remote_user()) || ($item['uid'] == local_user())) $dropping = true; - $drop = replace_macros((($dropping)? $droptpl : $fakedrop), array('$id' => $item['id'], '$delete' => t('Delete'))); + $drop = replace_macros((($dropping)? $droptpl : $fakedrop), array('$id' => $item['id'], '$select' => t('Select'), '$delete' => t('Delete'))); $photo = $item['photo']; |