diff options
author | friendica <info@friendica.com> | 2013-10-02 21:04:48 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-10-02 21:04:48 -0700 |
commit | 78a8d176acae142cac9d20315672772eccd6c683 (patch) | |
tree | 4aa6253a7410b097353a5ef47bcd90f88f733212 /include/conversation.php | |
parent | 8ce09e84c6282fbc0d5206f10c87baf8a0763a9d (diff) | |
download | volse-hubzilla-78a8d176acae142cac9d20315672772eccd6c683.tar.gz volse-hubzilla-78a8d176acae142cac9d20315672772eccd6c683.tar.bz2 volse-hubzilla-78a8d176acae142cac9d20315672772eccd6c683.zip |
post signatures
Diffstat (limited to 'include/conversation.php')
-rw-r--r-- | include/conversation.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/conversation.php b/include/conversation.php index 254453ad1..bcd9ae51a 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -638,6 +638,11 @@ function conversation(&$a, $items, $mode, $update, $page_mode = 'traditional') { $likebuttons = false; $shareable = false; + $verified = (($item['item_flags'] & ITEM_VERIFIED) ? t('Message is verified') : ''); + $unverified = ''; + + + $tags=array(); $terms = get_terms_oftype($item['term'],array(TERM_HASHTAG,TERM_MENTION,TERM_UNKNOWN)); if(count($terms)) @@ -665,6 +670,8 @@ function conversation(&$a, $items, $mode, $update, $page_mode = 'traditional') { 'tags' => $tags, 'hashtags' => $hashtags, 'mentions' => $mentions, + 'verified' => $verified, + 'unverified' => $unverified, 'txt_cats' => t('Categories:'), 'txt_folders' => t('Filed under:'), 'has_cats' => ((count($categories)) ? 'true' : ''), |