From 677f021c33f92d16aa578c8233105e73e7fd9713 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Wed, 26 Oct 2022 15:52:18 +0000 Subject: [PATCH] Bug 31976: Incorrect default category selected by authorized values page This patch removes some obsolete code for selecting a default authorized value category to be shown when the user first arrives on the authorized values page. This has not been necessary since we switched to an interface which lists all categories. NOTE: This bug will not be reproducible if your first authorized value, alphabetically, has no values associated with it. For instance, if you delete all authorized values in the AR_CANCELLATION category. To test, apply the patch and go to Administration -> Authorized values. In the breadcrumbs menu you should see "Home -> Administration -> Authorized values." Clicking any of the authorized value categories in the list should take you to a view of that category's values. Signed-off-by: Caroline Cyr La Rose --- admin/authorised_values.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/authorised_values.pl b/admin/authorised_values.pl index dd8339b568..2130e86819 100755 --- a/admin/authorised_values.pl +++ b/admin/authorised_values.pl @@ -222,7 +222,7 @@ if ( $op eq 'list' ) { { order_by => ['category_name'] } )->get_column('category_name'); - $searchfield ||= $category_names[0]; + $searchfield ||= ""; my @avs_by_category = Koha::AuthorisedValues->new->search( { category => $searchfield } )->as_list; my @loop_data = (); -- 2.34.1