diff options
author | Oliver Schramm <oliver.schramm97@gmail.com> | 2014-03-16 00:11:12 +0100 |
---|---|---|
committer | Oliver Schramm <oliver.schramm97@gmail.com> | 2014-03-16 00:11:12 +0100 |
commit | 4b2d7735b30270ed933ed8ba3d6519183ec87dd6 (patch) | |
tree | 1b4d97caa5278959a38a34288eae2c0773495eb8 /phpBB/includes/acp/acp_prune.php | |
parent | 325931a56bcaf23fb8bb3e1e3395ed739714f5d9 (diff) | |
download | forums-4b2d7735b30270ed933ed8ba3d6519183ec87dd6.tar forums-4b2d7735b30270ed933ed8ba3d6519183ec87dd6.tar.gz forums-4b2d7735b30270ed933ed8ba3d6519183ec87dd6.tar.bz2 forums-4b2d7735b30270ed933ed8ba3d6519183ec87dd6.tar.xz forums-4b2d7735b30270ed933ed8ba3d6519183ec87dd6.zip |
[ticket/7707] Add get_username_string() where possible
PHPBB3-7707
Diffstat (limited to 'phpBB/includes/acp/acp_prune.php')
-rw-r--r-- | phpBB/includes/acp/acp_prune.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/acp/acp_prune.php b/phpBB/includes/acp/acp_prune.php index 0f9ca9bab3..d0e5dfb5f4 100644 --- a/phpBB/includes/acp/acp_prune.php +++ b/phpBB/includes/acp/acp_prune.php @@ -294,7 +294,7 @@ class acp_prune $template->assign_block_vars('users', array( 'USERNAME' => $usernames[$user_id], 'USER_ID' => $user_id, - 'U_PROFILE' => append_sid($phpbb_root_path . 'memberlist.' . $phpEx, 'mode=viewprofile&u=' . $user_id), + 'U_PROFILE' => get_username_string('profile', $user_id, $usernames[$user_id]), 'U_USER_ADMIN' => ($auth->acl_get('a_user')) ? append_sid("{$phpbb_admin_path}index.$phpEx", 'i=users&mode=overview&u=' . $user_id, true, $user->session_id) : '', )); } |