From: Davide Franco Date: Thu, 28 Oct 2010 21:09:44 +0000 (+0200) Subject: bacula-web: Removed var_dump used for debug from report.php X-Git-Tag: Release-5.2.1~984 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=d720311c15d72fe3d5a4aa836baabc3391c75fa1;p=bacula%2Fbacula bacula-web: Removed var_dump used for debug from report.php --- diff --git a/gui/bacula-web/report.php b/gui/bacula-web/report.php index db2ebbddce..03c2f9f70e 100644 --- a/gui/bacula-web/report.php +++ b/gui/bacula-web/report.php @@ -60,7 +60,6 @@ while ( $tmp = $res_jobs->fetchRow(DB_FETCHMODE_ASSOC) ) { if ( $tdate[0] > 300000 ) $tmp['elapsed'] = "00:00:00"; $tmp['JobBytes'] = $dbSql->human_file_size( $tmp['JobBytes'] ); - var_dump( $tmp ); array_push($a_jobs,$tmp); } $smarty->assign('jobs',$a_jobs);