From 15d5fce125fcab6cb49e021d4727a57b486478d2 Mon Sep 17 00:00:00 2001 From: Bruce Allen Date: Fri, 29 Jul 2005 22:54:04 +0000 Subject: [PATCH] Trivial reordering svn path=/trunk/boinc/; revision=6872 --- html/inc/db_ops.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/inc/db_ops.inc b/html/inc/db_ops.inc index 822bd3d18a..d3799f07a7 100644 --- a/html/inc/db_ops.inc +++ b/html/inc/db_ops.inc @@ -1113,6 +1113,7 @@ function show_result($result) { row("Created", time_str($result->create_time)); row("Sent", time_str($result->sent_time)); + row("Report deadline", time_str($result->report_deadline)); row("Received", time_str($result->received_time)); row("Last time modified",mysqltime_str($result->mod_time)); row("Name", $result->name); @@ -1123,7 +1124,6 @@ function show_result($result) { row("Exit status", exit_status_string($result)); row("Host ID", "hostid\">" . host_name_by_id($result->hostid) . " [$result->hostid]"); row("User ID", "userid\">" . user_name_by_id($result->userid) . " [$result->userid]"); - row("Report deadline", time_str($result->report_deadline)); row("CPU time", $result->cpu_time); row("XML doc in", "
".htmlspecialchars($result->xml_doc_in)."
"); row("XML doc out", "
".htmlspecialchars($result->xml_doc_out)."
");