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

--- Comment #22 from Marcel de Rooy <m.de.r...@rijksmuseum.nl> ---
Actually the comment is weird now too (after 34972):

        # check if we have other reserves for this document, if we have a
result send the message of transfer
        my ( undef, $nextreservinfo, undef ) = CheckReserves( $item,
C4::Context->preference('ConfirmFutureHolds') );
        if ( $userenv_branch ne $nextreservinfo->{'branchcode'} ) {
            my $patron = Koha::Patrons->find(
$nextreservinfo->{'borrowernumber'} );
            $template->param(
                itemtitle      => $biblio->title,
                itembiblionumber => $biblio->biblionumber,
                iteminfo       => $biblio->author,
                patron         => $patron,
                diffbranch     => 1,
            );

Before 34972 we called GetOtherReserves and it could change stuff, but
CheckReserves does not change things. So 'sending the message of transfer' is
not true.

-- 
You are receiving this mail because:
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to