X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=tools%2Fautomatic_item_modification_by_age.pl;h=ae9bcec192bcb380b5dff9c1ae1b8f7567841ec0;hb=2f6877d6163dce3cbfbb4d418ee55ea31be6349b;hp=82895d25dd918b51dc89bbc31f48c3507a6485a2;hpb=66aacace086f16d2eca860cc6c2aa164866d0488;p=koha-ffzg.git diff --git a/tools/automatic_item_modification_by_age.pl b/tools/automatic_item_modification_by_age.pl index 82895d25dd..ae9bcec192 100755 --- a/tools/automatic_item_modification_by_age.pl +++ b/tools/automatic_item_modification_by_age.pl @@ -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,