Please review http://drupal.org/node/52867.

This problem still appears in Drupal 5.2. Here's the relevant code from a fresh install:

  else if ($op == 'view') {
    if (user_access('access user profiles')) {
      if ((arg(0) == 'node') && is_numeric(arg(1)) && (arg(2) == NULL)) {
        $node = node_load(arg(1));
        $account = user_load(array('uid' => $node->uid));

The author information won't appear on blog pages. Once I add the code listed in http://drupal.org/node/52867, things seem to work.

Comments

mdupont’s picture

Is it still present in the latest 5.x release?

freixas’s picture

Have no idea. I haven't needed this feature, so haven't followed up. A look at the code should tell you.

mdupont’s picture

Status: Active » Closed (duplicate)