@@ -, +, @@ --- Koha/LibraryCategory.pm | 2 +- admin/branches.pl | 2 +- t/db_dependent/Koha/Libraries.t | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) --- a/Koha/LibraryCategory.pm +++ a/Koha/LibraryCategory.pm @@ -41,7 +41,7 @@ sub new { return $self->SUPER::new( $params ); } -sub branchcodes{ +sub libraries{ my ( $self, $params ) = @_; # TODO This should return Koha::Libraries return $self->{_result}->branchcodes( $params ); --- a/admin/branches.pl +++ a/admin/branches.pl @@ -194,7 +194,7 @@ if ( $op eq 'add_form' ) { $op = 'list'; } elsif ( $op eq 'delete_confirm_category' ) { my $category = Koha::LibraryCategories->find($categorycode); - if ( my $libraries_count = scalar( $category->branchcodes ) ) { + if ( my $libraries_count = scalar( $category->libraries ) ) { push @messages, { type => 'error', code => 'cannot_delete_category', --- a/t/db_dependent/Koha/Libraries.t +++ a/t/db_dependent/Koha/Libraries.t @@ -77,7 +77,7 @@ $retrieved_library_1->update_categories( [ $new_category_2, $new_category_3 ] ); is( Koha::Libraries->find( $new_library_1->branchcode )->get_categories->count, 2, '2 libraries should have been linked to the category 2' ); my $retrieved_category_2 = Koha::LibraryCategories->find( $new_category_2->categorycode ); -is( $retrieved_category_2->branchcodes->count, 2, '2 libraries should have been linked to the category_2' ); +is( $retrieved_category_2->libraries->count, 2, '2 libraries should have been linked to the category_2' ); is( $retrieved_category_2->categorycode, uc('my_cc_2'), 'The Koha::LibraryCategory constructor should have upercased the categorycode' ); $retrieved_library_1->delete; --