@@ -, +, @@ --- Koha/Subscription.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/Koha/Subscription.pm +++ a/Koha/Subscription.pm @@ -45,7 +45,7 @@ Returns the biblio linked to this subscription as a Koha::Biblio object sub biblio { my ($self) = @_; - return Koha::Biblios->find($self->biblionumber); + return scalar Koha::Biblios->find($self->biblionumber); } =head3 type --