From 360f985307b5c7acca76cf7dd073503d49e2315b Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Tue, 23 Feb 2010 15:09:46 -0500 Subject: [PATCH] fix two broken calls to _FixPriority Signed-off-by: Galen Charlton --- C4/Reserves.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/C4/Reserves.pm b/C4/Reserves.pm index 35a45b43c3..bcb27bb200 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 ); } } -- 2.39.2