diff --git a/checkin_notes b/checkin_notes index 402c0d721c..d70b7f7c38 100755 --- a/checkin_notes +++ b/checkin_notes @@ -9080,3 +9080,13 @@ Rom 8 July 2005 boinc_guirpc_test.vcproj boinc_ss.vcproj upper_case.vcproj + +Bruce 10 July 2005 + - Add explicity leading path to URLs in a 'show user' function that is + called from one of the ops pages. Janus, I used URL_BASE rather + than MASTER_URL (what's the distinction?). Please confirm this. + + html/ + inc/ + user.inc + diff --git a/html/inc/user.inc b/html/inc/user.inc index 82e5d32356..43b47c87d4 100644 --- a/html/inc/user.inc +++ b/html/inc/user.inc @@ -104,17 +104,17 @@ function show_user_summary_public($user) { show_credit($user); if ($user->teamid && ($team = lookup_team($user->teamid))) { - row2("Team", "id>$team->name"); + row2("Team", "id>$team->name"); } else { row2("Team", "None"); } if ($user->show_hosts) { - row2("Computers", "id>View"); + row2("Computers", "id>View"); } else { row2("Computers", "hidden"); } if ($user->posts) { - row2("Message board posts", "id>$user->posts"); + row2("Message board posts", "id>$user->posts"); } }