[Koha-bugs] [Bug 25261] Multiple parts handling - confirmation alert

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Thu Apr 30 11:43:09 CEST 2020


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25261

Frédéric Demians <frederic at tamil.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |frederic at tamil.fr

--- Comment #3 from Frédéric Demians <frederic at tamil.fr> ---
Use of uninitialized value $no_of_parts in numeric gt (>) at /C4/Circulation.pm
line 848.

You should replace:
  my $no_of_parts = $item_object->materials;
with:
  my $no_of_parts = $item_object->materials || 0;

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list