From 9c065a8228330a547d3a4ca680069678708e5808 Mon Sep 17 00:00:00 2001 From: "Janus B. Kristensen" Date: Wed, 6 Jun 2007 18:19:13 +0000 Subject: [PATCH] Fixed a small display issue (workunitid-column was displaying resultid) svn path=/trunk/boinc/; revision=12836 --- html/user/pending.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/user/pending.php b/html/user/pending.php index 762beac5e1..b1d264e267 100644 --- a/html/user/pending.php +++ b/html/user/pending.php @@ -51,7 +51,7 @@ if ($format == "xml") { while ($result = mysql_fetch_object($res)) { echo "\n"; echo "id\">$result->id\n"; - echo "workunitid\">$result->id\n"; + echo "workunitid\">$result->workunitid\n"; echo "".format_credit($result->claimed_credit)."\n"; echo "\n"; $sum += $result->claimed_credit;