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

(-)a/admin/authorised_values.pl (-1 / +1 lines)
Lines 187-193 if ( $op eq 'add_form' or $op eq 'edit_form' ) { Link Here
187
    }
187
    }
188
188
189
    $op = 'list';
189
    $op = 'list';
190
} elsif ( $op eq 'edit_category' ) {
190
} elsif ( $op eq 'cud-edit_category' ) {
191
    my $category_name   = $input->param('category');
191
    my $category_name   = $input->param('category');
192
    my $is_integer_only = $input->param('is_integer_only') ? 1 : 0;
192
    my $is_integer_only = $input->param('is_integer_only') ? 1 : 0;
193
    my $category        = Koha::AuthorisedValueCategories->find($category_name);
193
    my $category        = Koha::AuthorisedValueCategories->find($category_name);
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/authorised_values.tt (-2 / +1 lines)
Lines 156-162 Link Here
156
                                        [% END %]
156
                                        [% END %]
157
                                    </li>
157
                                    </li>
158
                                </ol>
158
                                </ol>
159
                                <input type="hidden" name="op" value="edit_category" />
159
                                <input type="hidden" name="op" value="cud-edit_category" />
160
                                <input type="hidden" name="category" value="[% category_name | html %]" />
160
                                <input type="hidden" name="category" value="[% category_name | html %]" />
161
                                <input type="hidden" name="searchfield" value="[% category_name | html %]" />
161
                                <input type="hidden" name="searchfield" value="[% category_name | html %]" />
162
                            [% ELSE %]
162
                            [% ELSE %]
163
- 

Return to bug 28869