diff options
author | zotlabs <mike@macgirvin.com> | 2017-12-14 13:32:58 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-12-14 13:32:58 -0800 |
commit | 684b572aa8005479f3eb219fc526c812c801ca76 (patch) | |
tree | f8ee52081242cb28f681c2ca934f65fcf1a42387 /include/conversation.php | |
parent | 215d615fc3bb9e168e21a78a6319a7971c4d1e9e (diff) | |
parent | a61c72b3b2076a5971eca47cda8aa067c03f9d6c (diff) | |
download | volse-hubzilla-684b572aa8005479f3eb219fc526c812c801ca76.tar.gz volse-hubzilla-684b572aa8005479f3eb219fc526c812c801ca76.tar.bz2 volse-hubzilla-684b572aa8005479f3eb219fc526c812c801ca76.zip |
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into dev_merge
Diffstat (limited to 'include/conversation.php')
-rw-r--r-- | include/conversation.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/conversation.php b/include/conversation.php index fc0942474..77694deb3 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -755,8 +755,8 @@ function conversation($items, $mode, $update, $page_mode = 'traditional', $prepa 'forged' => $forged, 'txt_cats' => t('Categories:'), 'txt_folders' => t('Filed under:'), - 'has_cats' => ((count($body['categories'])) ? 'true' : ''), - 'has_folders' => ((count($body['folders'])) ? 'true' : ''), + 'has_cats' => (($body['categories']) ? 'true' : ''), + 'has_folders' => (($body['folders']) ? 'true' : ''), 'text' => strip_tags($body['html']), 'ago' => relative_date($item['created']), 'app' => $item['app'], |