From 67fa907078d75fac5ceb4a2cd1cafbbebe1a40bb Mon Sep 17 00:00:00 2001 From: Christian Beer Date: Wed, 9 Dec 2015 14:53:17 +0100 Subject: [PATCH] Web (ops): show additional information on ops pages --- html/inc/db_ops.inc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/html/inc/db_ops.inc b/html/inc/db_ops.inc index dc478a5dc1..908bd33a22 100644 --- a/html/inc/db_ops.inc +++ b/html/inc/db_ops.inc @@ -714,6 +714,7 @@ function show_app_version($app_version) { row("Application", "appid\">" . app_name_by_id($app_version->appid) . ""); row("Version num", $app_version->version_num); row("Platform", "platformid\">" . platform_name_by_id($app_version->platformid) . "" ); + row("Plan Class", $app_version->plan_class); row("XML doc", "
".htmlspecialchars($app_version->xml_doc)."
"); row("min_core_version", $app_version->min_core_version); row("max_core_version", $app_version->max_core_version); @@ -729,6 +730,7 @@ function app_version_short_header() { Application Version Platform + Plan Class "; } @@ -742,6 +744,7 @@ function show_app_version_short($app_version) { appid\">$x $app_version->version_num platformid\">$y + $app_version->plan_class "; } @@ -1100,7 +1103,7 @@ function show_result_short($result) { $received = "". time_str($result->report_deadline) . ""; } } - $version = app_version_string($result); + $version = app_version_string($result)." (app_version_id\">$result->app_version_id)"; $outcome_color = outcome_color($result->outcome); $validate_color = validate_color($result->validate_state); $host_user = host_user_link($result->hostid); @@ -1134,6 +1137,7 @@ function show_user($user) { row("Name", $user->name); row("Authenticator", $user->authenticator); row("Email address", $user->email_addr); + row("OK to send Email?", $user->send_email); row("Country", $user->country); row("Postal code", $user->postal_code); row("Total credit", $user->total_credit);