The functions uses l as

$output = l($name, 'user/'. $object->uid, array('title' => t('View user profile.')));

while it should be

$output = l($name, 'user/'. $object->uid, array('attributes' => array('title' => t('View user profile.'))));

In order to correctly print the title attribute.

This happens twice in theme_username. I haven't checked other functions.

CommentFileSizeAuthor
#1 theme_username-229817-1.patch662 bytesdropcube

Comments

dropcube’s picture

Version: 6.1 » 6.x-dev
Status: Active » Reviewed & tested by the community
StatusFileSize
new662 bytes

Minor issue. The patch attached fixes it.

gábor hojtsy’s picture

Version: 6.x-dev » 7.x-dev

Right, committed to Drupal 6. Moving to Drupal 7 for commit.

johnalbin’s picture

Status: Reviewed & tested by the community » Fixed
stevenpatz’s picture

Status: Fixed » Closed (duplicate)