From 66e5ae69f03e233c0be2779089d23c0ea368736b Mon Sep 17 00:00:00 2001 From: Graham Eames Date: Tue, 7 Feb 2006 20:42:51 +0000 Subject: [PATCH] We don't want to output %s (bug found during styles validation) git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@5535 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/memberlist.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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'];