From bed7cad791444888ba2818c993375041a2a4d0f3 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Tue, 26 Mar 2024 08:48:04 -0400 Subject: [PATCH] Bug 28530: (QA follow-up): Implement CSRF cud op --- admin/float_limits.pl | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/admin/float_limits.tt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/admin/float_limits.pl b/admin/float_limits.pl index 92133412f8c..bb4304333f9 100755 --- a/admin/float_limits.pl +++ b/admin/float_limits.pl @@ -44,7 +44,7 @@ my ( $template, $loggedinuser, $cookie ) = get_template_and_user( my $op = $input->param('op'); -if ( $op eq 'set_float_limits' ) { +if ( $op eq 'cud-set_float_limits' ) { my $schema = Koha::Database->new()->schema(); my @branches = Koha::Libraries->search()->as_list; my @itemtypes = Koha::ItemTypes->search()->as_list; diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/float_limits.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/float_limits.tt index 454c022ee88..5e7aa52055f 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/float_limits.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/float_limits.tt @@ -55,7 +55,7 @@ [% END %]
- +

Specify the total number of items per itemtype that are allowed to float at each library.

-- 2.30.2