From 1b00e321b93fb1df9936b184297a1fd19d7ece78 Mon Sep 17 00:00:00 2001 From: Graham Eames Date: Sat, 17 Sep 2005 18:36:48 +0000 Subject: [PATCH] Another change that is part of the fix to bug 102 in an earlier checkin git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@5210 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/groupcp.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/phpBB/groupcp.php b/phpBB/groupcp.php index 14e6f5c9ed..ed10dcb3dd 100644 --- a/phpBB/groupcp.php +++ b/phpBB/groupcp.php @@ -99,9 +99,9 @@ function generate_user_info(&$row, $date_format, $group_mod, &$from, &$posts, &$ $yim_img = ( $row['user_yim'] ) ? '' . $lang['YIM'] . '' : ''; $yim = ( $row['user_yim'] ) ? '' . $lang['YIM'] . '' : ''; - $temp_url = append_sid("search.$phpEx?search_author=" . urlencode($username) . "&showresults=posts"); - $search_img = '' . $lang['Search_user_posts'] . ''; - $search = '' . $lang['Search_user_posts'] . ''; + $temp_url = append_sid("search.$phpEx?search_author=" . urlencode($row['username']) . "&showresults=posts"); + $search_img = '' . sprintf($lang['Search_user_posts'], $row['username']) . ''; + $search = '' . sprintf($lang['Search_user_posts'], $row['username']) . ''; return; }