]> git.sur5r.net Git - bacula/bacula/blobdiff - gui/bweb/lib/Bweb.pm
ebl display f and E state on error
[bacula/bacula] / gui / bweb / lib / Bweb.pm
index e12c165b719b8f177cfd1abdaa20ad34ec92c686..03c109b32c9e426081f8d6e9b747751cdbd7a1f4 100644 (file)
@@ -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' ";          
+           }
        }
     }