fix some more PHP7.2 warnings

This commit is contained in:
Mario Vavti 2017-12-14 22:10:56 +01:00
parent a07b5ba4dd
commit a61c72b3b2

View File

@ -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'],