Hmm, I tried this and that in order to avoid the constant error messages, but it still doesn't work.

At the moment, my code looks like this ( replaced the "array = ..." with "array(..." at the beginning, because that appeared to be the wrong syntax):
<?php
array(ssi_recentTopics($num_recent = 5, $exclude_boards = array(1, 2, 3, 4, 5, 6, 7, 9, 10), $output_method = 'array'));
foreach ($array as $topic)
echo'
<a href="', $topic['href'], '">', $topic['subject'], '</a> ', $topic['time'], '
';
?>
Well, my news page is displayed again, but there's still an error with the "foreach" line, it looks like
this at the moment...