From cfa2143b288c9eb0095625d2fb497f3602177fdf Mon Sep 17 00:00:00 2001 From: Nahuel ANGELINETTI Date: Tue, 20 Jan 2009 13:46:58 +0100 Subject: [PATCH] (bug #2917) editing authority marc field structure doesn't workl This patch add a field in the ->execute() statement which was missing. The sql request have 8 args, and only 7 was passed. Signed-off-by: Galen Charlton --- admin/auth_tag_structure.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/admin/auth_tag_structure.pl b/admin/auth_tag_structure.pl index dfca6de402..447cab4b8e 100755 --- a/admin/auth_tag_structure.pl +++ b/admin/auth_tag_structure.pl @@ -153,6 +153,7 @@ if ($op eq 'add_form') { my $authorised_value =$input->param('authorised_value'); unless (C4::Context->config('demo') eq 1) { $sth->execute( + $tagfield, $liblibrarian, $libopac, $repeatable?1:0, -- 2.39.5