diff --git a/phpBB/memberlist.php b/phpBB/memberlist.php index a5538e0320..ed1d61a8f6 100644 --- a/phpBB/memberlist.php +++ b/phpBB/memberlist.php @@ -228,8 +228,8 @@ if ( $row = $db->sql_fetchrow($result) ) $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'] . ''; + $search_img = '' . sprintf($lang['Search_user_posts'], $username) . ''; + $search = '' . sprintf($lang['Search_user_posts'], $username) . ''; $row_color = ( !($i % 2) ) ? $theme['td_color1'] : $theme['td_color2']; $row_class = ( !($i % 2) ) ? $theme['td_class1'] : $theme['td_class2'];