fix some more PHP7.2 warnings
This commit is contained in:
parent
a07b5ba4dd
commit
a61c72b3b2
@ -755,8 +755,8 @@ function conversation($items, $mode, $update, $page_mode = 'traditional', $prepa
|
|||||||
'forged' => $forged,
|
'forged' => $forged,
|
||||||
'txt_cats' => t('Categories:'),
|
'txt_cats' => t('Categories:'),
|
||||||
'txt_folders' => t('Filed under:'),
|
'txt_folders' => t('Filed under:'),
|
||||||
'has_cats' => ((count($body['categories'])) ? 'true' : ''),
|
'has_cats' => (($body['categories']) ? 'true' : ''),
|
||||||
'has_folders' => ((count($body['folders'])) ? 'true' : ''),
|
'has_folders' => (($body['folders']) ? 'true' : ''),
|
||||||
'text' => strip_tags($body['html']),
|
'text' => strip_tags($body['html']),
|
||||||
'ago' => relative_date($item['created']),
|
'ago' => relative_date($item['created']),
|
||||||
'app' => $item['app'],
|
'app' => $item['app'],
|
||||||
|
Reference in New Issue
Block a user