From 430eab985efb8c881aa5acaf212a92fc28c03858 Mon Sep 17 00:00:00 2001 From: Bruce Allen Date: Sun, 10 Jul 2005 04:13:15 +0000 Subject: [PATCH] - 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. svn path=/trunk/boinc/; revision=6589 --- checkin_notes | 10 ++++++++++ html/inc/user.inc | 6 +++--- 2 files changed, 13 insertions(+), 3 deletions(-) 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"); } }