From 37ce65d3b3e239e1368dad711288d99141784ee2 Mon Sep 17 00:00:00 2001 From: Olli-Antti Kivilahti Date: Tue, 3 Nov 2015 11:11:44 +0200 Subject: [PATCH] Bug 14616 - Introducing Koha::Object subclasses. Fixed Biblioitems result source naming typo. --- Koha/BiblioItem.pm | 2 +- Koha/BiblioItems.pm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Koha/BiblioItem.pm b/Koha/BiblioItem.pm index b4e172a..0a3e63e 100644 --- a/Koha/BiblioItem.pm +++ b/Koha/BiblioItem.pm @@ -26,7 +26,7 @@ use Koha::Database; use base qw(Koha::Object); sub type { - return 'BiblioItem'; + return 'Biblioitem'; } 1; diff --git a/Koha/BiblioItems.pm b/Koha/BiblioItems.pm index 0769f73..b30010e 100644 --- a/Koha/BiblioItems.pm +++ b/Koha/BiblioItems.pm @@ -28,7 +28,7 @@ use Koha::BiblioItem; use base qw(Koha::Objects); sub type { - return 'BiblioItem'; + return 'Biblioitem'; } sub object_class { -- 1.9.1