1 user.module user_page_title($account)

Menu item title callback - use the user name.

File

core/modules/user/user.module, line 1763
Enables the user registration and login system.

Code

function user_page_title($account) {
  return is_object($account) ? user_format_name($account) : '';
}