https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33444
--- Comment #12 from Marcel de Rooy <[email protected]> --- (In reply to Marcel de Rooy from comment #5) > misc/cronjobs/automatic_renewals.pl > > - my $date_due = AddRenewal( $auto_renew->borrowernumber, > $auto_renew->itemnumber, $auto_renew->branchcode, undef, undef, undef, 0, 1 > ); > + my $date_due = AddRenewal({ > + borrowernumber => $auto_renew->borrowernumber, > + itemnumber => $auto_renew->itemnumber, > + branch => $auto_renew->branchcode, > + seen => 0, > + automatic => 1, > + skip_record_index => 1 > > This is not the same. skip_record_index was not there before > Please clarify Adjusted in patch 1 in consultation with Nick on IRC. -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] 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/
