@@ -, +, @@ authority framework to load the right page CHRON_TERM Actions menu, MARC Structure Yes, delete URL is ?searchfield=&authtypecode=CHRON_TERM the URL is ?searchfield=092&authtypecode=CHRON_TERM and you can just keep deleting 09x tags one after another --- admin/auth_tag_structure.pl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) --- a/admin/auth_tag_structure.pl +++ a/admin/auth_tag_structure.pl @@ -156,8 +156,7 @@ if ($op eq 'add_form') { } elsif ($op eq 'cud-delete_confirmed') { $dbh->do(q|delete from auth_tag_structure where tagfield=? and authtypecode=?|, undef, $searchfield, $authtypecode); $dbh->do(q|delete from auth_subfield_structure where tagfield=? and authtypecode=?|, undef, $searchfield, $authtypecode); - my $tagfield = $input->param('tagfield'); - print $input->redirect("/cgi-bin/koha/admin/auth_tag_structure.pl?searchfield=$tagfield&authtypecode=$authtypecode"); + print $input->redirect("/cgi-bin/koha/admin/auth_tag_structure.pl?searchfield=$searchfield&authtypecode=$authtypecode"); exit; # END $OP eq DELETE_CONFIRMED ################## ITEMTYPE_CREATE ################################## --