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

(-)a/C4/Circulation.pm (-2 / +4 lines)
Lines 2945-2951 sub GetUpcomingDueIssues { Link Here
2945
2945
2946
=head2 CanBookBeRenewed
2946
=head2 CanBookBeRenewed
2947
2947
2948
  ($ok,$error,$info) = &CanBookBeRenewed($patron, $issue, $override_limit);
2948
  ($ok,$error,$info) = &CanBookBeRenewed($patron, $issue, $override_limit, $cron);
2949
2949
2950
Find out whether a borrowed item may be renewed.
2950
Find out whether a borrowed item may be renewed.
2951
2951
Lines 2953-2958 C<$patron> is the patron who currently has the issue. Link Here
2953
2953
2954
C<$issue> is the checkout to renew.
2954
C<$issue> is the checkout to renew.
2955
2955
2956
C<$cron> true or false, specifies if this check is being made
2957
by the automatic_renewals.pl cronscript
2958
2956
C<$override_limit>, if supplied with a true value, causes
2959
C<$override_limit>, if supplied with a true value, causes
2957
the limit on the number of times that the loan can be renewed
2960
the limit on the number of times that the loan can be renewed
2958
(as controlled by the item type) to be ignored. Overriding also allows
2961
(as controlled by the item type) to be ignored. Overriding also allows
2959
- 

Return to bug 25393