2
Have you looked at the source of the HTML page? That might explain what's causing the browser problem.
Also, you could dump out the contents of $items like this, to see exactly what it contains:
class\headlinerenderer.php
for ($i = 0; $i < $max; $i++) {
array_walk($items[$i], array($this, 'convertFromUtf8'));
$this->_tpl->append_by_ref('items', $items[$i]);
}
[color=ff0000]var_dump('items', $items); #*#DEBUG#[/color]