From: Eric Bollengier Date: Sun, 22 Jun 2008 12:12:29 +0000 (+0000) Subject: ebl Fix missing job bug X-Git-Tag: Release-3.0.0~1250 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=96bc5bb239a7fb67340790ce426bd4812b7575f7;p=bacula%2Fbacula ebl Fix missing job bug git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@7214 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/gui/bweb/lib/Bweb.pm b/gui/bweb/lib/Bweb.pm index aa3db9715c..d13e162325 100644 --- a/gui/bweb/lib/Bweb.pm +++ b/gui/bweb/lib/Bweb.pm @@ -4926,7 +4926,6 @@ sub check_job my $sch = $sched->get_scheds($schedname); return undef if (!$sch); - my $end = $sched->{end}; # this backup must have start before the next one my @ret; foreach my $s (@$sch) { my $pool; @@ -4936,6 +4935,7 @@ sub check_job my $level = $sched->get_level($s); my ($l) = ($level =~ m/^(.)/); # we keep the first letter my $evts = $sched->get_event($s); + my $end = $sched->{end}; # this backup must have start before the next one foreach my $evt (reverse @$evts) { my $all = $self->dbh_selectrow_hashref(" diff --git a/gui/bweb/technotes-2.3 b/gui/bweb/technotes-2.3 index e696f5871f..f4e863cef8 100644 --- a/gui/bweb/technotes-2.3 +++ b/gui/bweb/technotes-2.3 @@ -1,3 +1,6 @@ +22Jun08 +ebl Fix bug in missing job view + 20Jun08 ebl Update check_bacula.pl documentation