From 92ba0b66b9a4d9a312ca7f958f0cab550a5c0394 Mon Sep 17 00:00:00 2001 From: Davide Franco Date: Wed, 22 Jun 2011 17:56:44 +0200 Subject: [PATCH] bacula-web: Indented and commented php code --- gui/bacula-web/jobs.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/gui/bacula-web/jobs.php b/gui/bacula-web/jobs.php index 9da8f531f8..794ca3d002 100644 --- a/gui/bacula-web/jobs.php +++ b/gui/bacula-web/jobs.php @@ -118,11 +118,10 @@ $start = $job['StartTime']; $end = $job['EndTime']; + // Job execution execution time $job['elapsed_time'] = TimeUtils::Get_Elapsed_Time( $start, $end); - // Job Level - $job['Level'] = $job_level[ $job['Level'] ]; - + $job['Level'] = $job_level[ $job['Level'] ]; // Job Size $job['JobBytes'] = Utils::Get_Human_Size( $job['JobBytes'] ); -- 2.39.5