View | Details | Raw Unified | Return to bug 9487
Collapse All | Expand All

(-)a/C4/Reserves.pm (-2 / +2 lines)
Lines 140-146 BEGIN { Link Here
140
140
141
=cut
141
=cut
142
142
143
sub AddReserve {
143
sub AddReserve {	
144
    my (
144
    my (
145
        $branch,    $borrowernumber, $biblionumber,
145
        $branch,    $borrowernumber, $biblionumber,
146
        $constraint, $bibitems,  $priority, $resdate, $expdate, $notes,
146
        $constraint, $bibitems,  $priority, $resdate, $expdate, $notes,
Lines 212-217 sub AddReserve { Link Here
212
                'branches'  => $branch_details,
212
                'branches'  => $branch_details,
213
                'borrowers' => $borrower,
213
                'borrowers' => $borrower,
214
                'biblio'    => $biblionumber,
214
                'biblio'    => $biblionumber,
215
                'items'     => $checkitem,
215
            },
216
            },
216
        ) ) {
217
        ) ) {
217
218
218
- 

Return to bug 9487