]> git.sur5r.net Git - bacula/bacula/blobdiff - gui/bacula-web/jobs.php
bacula-web: Renamed php class Utils to CUtils
[bacula/bacula] / gui / bacula-web / jobs.php
index 9da8f531f82c15bde2bccc941be761630d4024d5..665d8be8c334eb9b86dcfbedb1443a75dfe4ee94 100644 (file)
                $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'] );
+               $job['JobBytes'] = CUtils::Get_Human_Size( $job['JobBytes'] );
 
                array_push( $last_jobs, $job);
          }