The username for a comment didn't show in the overview. I did the following changes.

in advanced_forum.module in the function _advanced_forum_get_last_topic is missing a "AS" at the comment query.

in function advanced_forum_preprocess_forum_submitted:

    if (!empty($variables['topic']->reply_author_id)) {
      $author->uid = $variables['topic']->reply_author_id;
      $author->name = $variables['topic']->reply_author_name;
    }

must be changed to

    if (!empty($variables['topic']->reply_author_name)) {
      $author->uid = $variables['topic']->topic_author_id;
      $author->name = $variables['topic']->reply_author_name;
    }

because of the query in _advanced_forum_get_last_topic

Comments

michelle’s picture

Status: Active » Fixed

That code doesn't exist anymore. It's also a duplicate of a few other issues.

Michelle

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.