From: Davide Franco Date: Wed, 22 Jun 2011 15:56:44 +0000 (+0200) Subject: bacula-web: Indented and commented php code X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=92ba0b66b9a4d9a312ca7f958f0cab550a5c0394;p=bacula%2Fbacula bacula-web: Indented and commented php code --- 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'] );