diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-12-04 14:04:03 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-12-04 14:04:03 +0000 |
commit | a6dbcd472c64db42ac549b83f890f0b9b0f41572 (patch) | |
tree | 2755d3ca2b85fb371efe08eb5c401fd1001e153a /phpBB/memberlist.php | |
parent | 0d649f6290e5f45c8a487f8c471bf02afe2d8337 (diff) | |
download | forums-a6dbcd472c64db42ac549b83f890f0b9b0f41572.tar forums-a6dbcd472c64db42ac549b83f890f0b9b0f41572.tar.gz forums-a6dbcd472c64db42ac549b83f890f0b9b0f41572.tar.bz2 forums-a6dbcd472c64db42ac549b83f890f0b9b0f41572.tar.xz forums-a6dbcd472c64db42ac549b83f890f0b9b0f41572.zip |
Missed a ['From'] -> ['Location'] change
git-svn-id: file:///svn/phpbb/trunk@1507 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/memberlist.php')
-rw-r--r-- | phpBB/memberlist.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/memberlist.php b/phpBB/memberlist.php index 793e3e8288..bdb103dce3 100644 --- a/phpBB/memberlist.php +++ b/phpBB/memberlist.php @@ -149,7 +149,7 @@ if(($selected_members = $db->sql_numrows($result)) > 0) "L_SELECT_SORT_METHOD" => $lang['Select_sort_method'], "L_EMAIL" => $lang['Email'], "L_WEBSITE" => $lang['Website'], - "L_FROM" => $lang['From'], + "L_FROM" => $lang['Location'], "L_ORDER" => $lang['Order'], "L_SORT" => $lang['Sort'], "L_SUBMIT" => $lang['Sort'], @@ -227,13 +227,13 @@ if(($selected_members = $db->sql_numrows($result)) > 0) $search_img = "<a href=\"" . append_sid("search.$phpEx?a=" . urlencode($members[$i]['username']) . "&f=all&b=0&d=DESC&c=100&dosearch=1") . "\"><img src=\"" . $images['icon_search'] . "\" border=\"0\" alt=\"" . $lang['Search'] . "\" /></a>"; - $row_color = "#" . ( (!($i % 2)) ? $theme['td_color1'] : $theme['td_color2']); + $row_color = (!($i % 2)) ? $theme['td_color1'] : $theme['td_color2']; $row_class = (!($i % 2)) ? $theme['td_class1'] : $theme['td_class2']; $template->assign_block_vars("memberrow", array( "U_VIEWPROFILE" => append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=" . $user_id), - "ROW_COLOR" => $row_color, + "ROW_COLOR" => "#" . $row_color, "ROW_CLASS" => $row_class, "USERNAME" => $username, "FROM" => $from, |