aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/memberlist.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2001-12-04 14:04:03 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2001-12-04 14:04:03 +0000
commita6dbcd472c64db42ac549b83f890f0b9b0f41572 (patch)
tree2755d3ca2b85fb371efe08eb5c401fd1001e153a /phpBB/memberlist.php
parent0d649f6290e5f45c8a487f8c471bf02afe2d8337 (diff)
downloadforums-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.php6
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']) . "&amp;f=all&amp;b=0&amp;d=DESC&amp;c=100&amp;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&amp;" . POST_USERS_URL . "=" . $user_id),
- "ROW_COLOR" => $row_color,
+ "ROW_COLOR" => "#" . $row_color,
"ROW_CLASS" => $row_class,
"USERNAME" => $username,
"FROM" => $from,