From 961708cf31fb5fa3919f39fe9ffec9c25ef30dab Mon Sep 17 00:00:00 2001 From: Tim Plunkett <git@plnktt.com> Date: Tue, 15 May 2012 15:47:39 -0400 Subject: [PATCH] format_username() was renamed to user_format_name(). --- modules/user/views_handler_field_user_name.inc | 2 +- modules/user/views_plugin_argument_validate_user.inc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/user/views_handler_field_user_name.inc b/modules/user/views_handler_field_user_name.inc index 747629ec6ff7..5c9bd25f0409 100644 --- a/modules/user/views_handler_field_user_name.inc +++ b/modules/user/views_handler_field_user_name.inc @@ -75,7 +75,7 @@ function render_link($data, $values) { } // If we want a formatted username, do that. if (!empty($this->options['format_username'])) { - return format_username($account); + return user_format_name($account); } // Otherwise, there's no special handling, so return the data directly. return $data; diff --git a/modules/user/views_plugin_argument_validate_user.inc b/modules/user/views_plugin_argument_validate_user.inc index b72709445295..f47960925ce4 100644 --- a/modules/user/views_plugin_argument_validate_user.inc +++ b/modules/user/views_plugin_argument_validate_user.inc @@ -122,7 +122,7 @@ function validate_argument($argument) { } $this->argument->argument = $account->uid; - $this->argument->validated_title = check_plain(format_username($account)); + $this->argument->validated_title = check_plain(user_format_name($account)); return TRUE; } -- GitLab