|
From: Paul S. O. <ps...@us...> - 2001-12-04 14:04:07
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv14308
Modified Files:
memberlist.php
Log Message:
Missed a ['From'] -> ['Location'] change
Index: memberlist.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/memberlist.php,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -r1.26 -r1.27
*** memberlist.php 2001/11/27 00:30:59 1.26
--- memberlist.php 2001/12/04 14:04:03 1.27
***************
*** 150,154 ****
"L_EMAIL" => $lang['Email'],
"L_WEBSITE" => $lang['Website'],
! "L_FROM" => $lang['From'],
"L_ORDER" => $lang['Order'],
"L_SORT" => $lang['Sort'],
--- 150,154 ----
"L_EMAIL" => $lang['Email'],
"L_WEBSITE" => $lang['Website'],
! "L_FROM" => $lang['Location'],
"L_ORDER" => $lang['Order'],
"L_SORT" => $lang['Sort'],
***************
*** 228,232 ****
$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_class = (!($i % 2)) ? $theme['td_class1'] : $theme['td_class2'];
--- 228,232 ----
$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_class = (!($i % 2)) ? $theme['td_class1'] : $theme['td_class2'];
***************
*** 234,238 ****
"U_VIEWPROFILE" => append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=" . $user_id),
! "ROW_COLOR" => $row_color,
"ROW_CLASS" => $row_class,
"USERNAME" => $username,
--- 234,238 ----
"U_VIEWPROFILE" => append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=" . $user_id),
! "ROW_COLOR" => "#" . $row_color,
"ROW_CLASS" => $row_class,
"USERNAME" => $username,
|