View | Details | Raw Unified | Return to bug 28530
Collapse All | Expand All

(-)a/admin/float_limits.pl (-1 / +1 lines)
Lines 44-50 my ( $template, $loggedinuser, $cookie ) = get_template_and_user( Link Here
44
44
45
my $op = $input->param('op');
45
my $op = $input->param('op');
46
46
47
if ( $op eq 'set_float_limits' ) {
47
if ( $op eq 'cud-set_float_limits' ) {
48
    my $schema    = Koha::Database->new()->schema();
48
    my $schema    = Koha::Database->new()->schema();
49
    my @branches  = Koha::Libraries->search()->as_list;
49
    my @branches  = Koha::Libraries->search()->as_list;
50
    my @itemtypes = Koha::ItemTypes->search()->as_list;
50
    my @itemtypes = Koha::ItemTypes->search()->as_list;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/float_limits.tt (-2 / +1 lines)
Lines 55-61 Link Here
55
                [% END %]
55
                [% END %]
56
56
57
                <form method="post" action="/cgi-bin/koha/admin/float_limits.pl" id="float_limit_form">
57
                <form method="post" action="/cgi-bin/koha/admin/float_limits.pl" id="float_limit_form">
58
                    <input type="hidden" name="op" value="set_float_limits" />
58
                    <input type="hidden" name="op" value="cud-set_float_limits" />
59
                    <fieldset id="float_limits">
59
                    <fieldset id="float_limits">
60
                        <div class="help">
60
                        <div class="help">
61
                            <p>Specify the total number of items per itemtype that are allowed to float at each library.</p>
61
                            <p>Specify the total number of items per itemtype that are allowed to float at each library.</p>
62
- 

Return to bug 28530