From 5fa83d2c3a4d626070f3d9d09fec2a45fd33fc07 Mon Sep 17 00:00:00 2001 From: Eric Bollengier Date: Mon, 5 Mar 2007 17:28:22 +0000 Subject: [PATCH] ebl bugfix (missing fileset when running job from bweb) git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/branches/Branch-2.0@4316 91ce42f0-d328-0410-95d8-f526ca767f89 --- gui/bweb/lib/Bweb.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gui/bweb/lib/Bweb.pm b/gui/bweb/lib/Bweb.pm index 76388266b0..307194a327 100644 --- a/gui/bweb/lib/Bweb.pm +++ b/gui/bweb/lib/Bweb.pm @@ -3278,7 +3278,7 @@ sub run_job_now # TODO: check input (don't use pool, level) - my $arg = $self->get_form('pool', 'level', 'client', 'priority', 'when'); + my $arg = $self->get_form('pool', 'level', 'client', 'priority', 'when', 'fileset'); my $job = CGI::param('job') || ''; my $storage = CGI::param('storage') || ''; @@ -3288,6 +3288,7 @@ sub run_job_now level => $arg->{level}, storage => $storage, pool => $arg->{pool}, + fileset => $arg->{fileset}, when => $arg->{when}, ); -- 2.39.5