Sorry for my English and php.

A have done all from readme.txt, and a got title in node (for node author), but not in comments for this node (for comments authors).

To fix this problem I add $user_comment_title variable to use it in comment.tpl.php

This is a code from template.php

case 'node':
	  if (module_exists('user_titles')) {
        $vars['user_title'] = user_titles_get_user_title($vars['node']->uid);
      }
    case 'comment':
      if (module_exists('user_titles')) {
        $vars['user_comment_title'] = user_titles_get_user_title($vars['comment']->uid);
      }

After that I have got that I want.

I use modified garland theme and Drupal 5.2

Comments

wrunt’s picture

Version: 5.x-1.0-beta2 » 5.x-1.x-dev
Status: Active » Fixed

Thanks Yaroslav, I've fixed this in cvs.

Anonymous’s picture

Status: Fixed » Closed (fixed)

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