@@ -, +, @@ categories in use 1. Without the patch, Administration - Patron categories 2. On the row for Staff, click Delete, Delete this category 3. Note an error message telling you to check the logs for details 4. Apply patch, restart_all 5. With the patch, repeat steps 1-2, note that instead of a button for Delete this category you get a warning that it is in use 6. In the list of categories, row for Board, click Delete, Delete this category 7. Note that the (unused) Board category was deleted --- admin/categories.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/admin/categories.pl +++ a/admin/categories.pl @@ -168,7 +168,7 @@ elsif ( $op eq 'cud-add_validate' ) { $searchfield = q||; $op = 'list'; } -elsif ( $op eq 'cud-delete_confirm' ) { +elsif ( $op eq 'delete_confirm' ) { my $count = Koha::Patrons->search({ categorycode => $categorycode --