From 5833b7754deb57e78ae3b2ddce0c5d18634ebc0d Mon Sep 17 00:00:00 2001 From: Eric Bollengier Date: Mon, 25 Sep 2006 20:29:50 +0000 Subject: [PATCH] ebl display f and E state on error git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3503 91ce42f0-d328-0410-95d8-f526ca767f89 --- gui/bweb/lib/Bweb.pm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gui/bweb/lib/Bweb.pm b/gui/bweb/lib/Bweb.pm index e12c165b71..03c109b32c 100644 --- a/gui/bweb/lib/Bweb.pm +++ b/gui/bweb/lib/Bweb.pm @@ -1781,7 +1781,11 @@ sub get_param my $status = CGI::param('status') || ''; if ($status =~ /^(\w)$/) { $ret{status} = $1; - $limit .= "AND Job.JobStatus = '$1' "; + if ($1 eq 'f') { + $limit .= "AND Job.JobStatus IN ('f','E') "; + } else { + $limit .= "AND Job.JobStatus = '$1' "; + } } } -- 2.39.5