[Koha-bugs] [Bug 32496] Reduce unnecessary unblessings of objects in Circulation.pm

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Wed Jan 4 16:14:12 CET 2023


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

--- Comment #8 from Jonathan Druart <jonathan.druart+koha at gmail.com> ---
As well as:

* unrelated change: item_issued_to_other_patron

* 
-    my $issue = AddIssue( $patron_borrower->unblessed, $item_1->barcode);
+    my $issue = AddIssue( $patron->unblessed, $item_1->barcode);

+        my $issue = AddIssue( $renewing_borrower_obj->unblessed,
$item_to_auto_renew->barcode, $ten_days_ahead, undef, $ten_days_before, undef,
{ 
auto_renew => 1 } );

And other AddIssue calls.

Should not unbless here.

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


More information about the Koha-bugs mailing list