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/viewtopic.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/viewtopic.php')
| -rw-r--r-- | phpBB/viewtopic.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php index 596272636a..4a1c6202e5 100644 --- a/phpBB/viewtopic.php +++ b/phpBB/viewtopic.php @@ -1175,7 +1175,7 @@ while ($row = $db->sql_fetchrow($result)) 'user_colour' => $row['user_colour'], 'online' => false, - 'profile' => append_sid("{$phpbb_root_path}memberlist.$phpEx", "mode=viewprofile&u=$poster_id"), + 'profile' => get_username_string('profile', $poster_id, $row['username'], $row['user_colour']), 'jabber' => ($row['user_jabber'] && $auth->acl_get('u_sendim')) ? append_sid("{$phpbb_root_path}memberlist.$phpEx", "mode=contact&action=jabber&u=$poster_id") : '', 'search' => ($auth->acl_get('u_search')) ? append_sid("{$phpbb_root_path}search.$phpEx", "author_id=$poster_id&sr=posts") : '', |
