X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=C4%2FReserves.pm;h=9b7014ef14b2769567542c229f29287ecd93052f;hb=a70822480ec1b479603092cea627f7c785d38a77;hp=35a45b43c3d1408f4f9057ab661064d8c778a8e5;hpb=fcb21ec94c8dd9cf7cbc8314427d94de0fb1831c;p=koha.git diff --git a/C4/Reserves.pm b/C4/Reserves.pm index 35a45b43c3..9b7014ef14 100644 --- a/C4/Reserves.pm +++ b/C4/Reserves.pm @@ -1006,7 +1006,7 @@ sub CancelReserve { $sth->execute( $biblio, $borr ); # now fix the priority on the others.... - _FixPriority( $priority, $biblio ); + _FixPriority( $biblio, $borr ); } } @@ -1152,7 +1152,7 @@ sub ModReserveFill { # now fix the priority on the others (if the priority wasn't # already sorted!).... unless ( $priority == 0 ) { - _FixPriority( $priority, $biblionumber ); + _FixPriority( $biblionumber, $borrowernumber ); } } @@ -1841,7 +1841,7 @@ sub _ShiftPriorityByDateAndPriority { =head1 AUTHOR -Koha Development Team +Koha Development Team =cut