4
@goffy,
It looks to me like there's a minor bug in the logic. $status is defined as a string variable, but later it is accessed as an array.
The code in ./class/TopicRenderer.php (line 730) is:
le="color: #000000"><?php $status = '';
Should be changed to:
le="color: #000000"><?php $status = [];