Node-forum.tpl.php, line 14 reads

<?php if (module_exist('flatforum')): ?>

It should read

<?php if (module_exists('flatforum')): ?>

The function name changed from drupal 4.7 to drupal 5.0.

As written, the template file bails out at the if() and only renders the username who submitted the comment (in my instance).

Comments

maartenvg’s picture

Status: Active » Fixed

Apparently this has been fixed in HEAD (http://drupal.org/node/95590), but not mentioned here.

Anonymous’s picture

Status: Fixed » Closed (fixed)