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
Comment #1
mdupontIs it still present in the latest 5.x release?
Comment #2
freixas commentedHave no idea. I haven't needed this feature, so haven't followed up. A look at the code should tell you.
Comment #3
mdupontDuplicate of #52867: Author Information Block - fix to display on blogs