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

(-)a/circ/returns.pl (-2 / +1 lines)
Lines 173-180 if ( $query->param('reserve_id') ) { Link Here
173
    # FIXME do we need to do this if we didn't take the cancel_reserve branch above?
173
    # FIXME do we need to do this if we didn't take the cancel_reserve branch above?
174
    my ( undef, $nextreservinfo, undef ) = CheckReserves($item);
174
    my ( undef, $nextreservinfo, undef ) = CheckReserves($item);
175
175
176
    my $patron = Koha::Patrons->find( $nextreservinfo->{'borrowernumber'} );
177
    if ( $userenv_branch ne $nextreservinfo->{'branchcode'} ) {
176
    if ( $userenv_branch ne $nextreservinfo->{'branchcode'} ) {
177
        my $patron = Koha::Patrons->find( $nextreservinfo->{'borrowernumber'} );
178
        $template->param(
178
        $template->param(
179
            itemtitle      => $biblio->title,
179
            itemtitle      => $biblio->title,
180
            itembiblionumber => $biblio->biblionumber,
180
            itembiblionumber => $biblio->biblionumber,
181
- 

Return to bug 37400