[Koha-bugs] [Bug 33444] AddRenewal should take a hash of parameters

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Tue Jul 18 13:23:59 CEST 2023


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

--- Comment #4 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> ---
Did you see that you solved a bug here (Koha/REST/V1/Checkouts.pm):

         AddRenewal(
-            $checkout->borrowernumber,
-            $checkout->itemnumber,
-            $checkout->branchcode,
-            undef,
-            undef,
-            $seen
+            {
+                borrowernumber => $checkout->borrowernumber,
+                itemnumber     => $checkout->itemnumber,
+                branch         => $checkout->branchcode,
+                seen           => $seen

Seen was in the sixth position before. And should have been 7th.

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


More information about the Koha-bugs mailing list