Bug 28175: (follow-up) Preselect correct category after search
[koha-ffzg.git] / tools / automatic_item_modification_by_age.pl
index 82895d2..ae9bcec 100755 (executable)
@@ -40,7 +40,10 @@ use C4::Items;
 use C4::Output;
 use C4::Koha;
 
-my $cgi = new CGI;
+use Koha::Items;
+use Koha::Biblioitems;
+
+my $cgi = CGI->new;
 
 # open template
 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
@@ -48,7 +51,6 @@ my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
         template_name   => "tools/automatic_item_modification_by_age.tt",
         query           => $cgi,
         type            => "intranet",
-        authnotrequired => 0,
         flagsrequired   => { tools => 'items_batchmod' },
     }
 );
@@ -106,8 +108,8 @@ if ( $@ ) {
     exit;
 }
 
-my @item_fields = map { "items.$_" } C4::Items::columns;
-my @biblioitem_fields = map { "biblioitems.$_" } C4::Items::biblioitems_columns;
+my @item_fields = map { "items.$_" } Koha::Items->columns;
+my @biblioitem_fields = map { "biblioitems.$_" } Koha::Biblioitems->columns;
 $template->param(
     op => $op,
     messages => \@messages,