From be055ebd10ed7400bc9b269bfa0d7ca86e550145 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 9 Feb 2018 11:35:03 -0300 Subject: [PATCH] Bug 16735: Remove unecessary use of Koha::LibraryCategories in onboarding This was not used, it has been copied/pasted from admin/branches.pl --- installer/onboarding.pl | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/installer/onboarding.pl b/installer/onboarding.pl index 76cc70810a..83859e77c2 100755 --- a/installer/onboarding.pl +++ b/installer/onboarding.pl @@ -274,22 +274,6 @@ if ( $step == 5 ) { my $libraries = Koha::Libraries->search( {}, { order_by => ['branchcode'] }, ); $template_params->{libraries} = $libraries; -$template_params->{group_types} = [ - { - categorytype => 'searchdomain', - categories => [ - Koha::LibraryCategories->search( - { categorytype => 'searchdomain' } - ) - ], - }, - { - categorytype => 'properties', - categories => [ - Koha::LibraryCategories->search( { categorytype => 'properties' } ) - ], - }, -]; if ( $step > 5 ) { $template_params->{all_done} = 1; # If step 5 is complete, we are done! -- 2.11.0