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

(-)a/C4/Circulation.pm (-2 / +4 lines)
Lines 2925-2931 sub GetUpcomingDueIssues { Link Here
2925
2925
2926
=head2 CanBookBeRenewed
2926
=head2 CanBookBeRenewed
2927
2927
2928
  ($ok,$error,$info) = &CanBookBeRenewed($patron, $issue, $override_limit);
2928
  ($ok,$error,$info) = &CanBookBeRenewed($patron, $issue, $override_limit, $cron);
2929
2929
2930
Find out whether a borrowed item may be renewed.
2930
Find out whether a borrowed item may be renewed.
2931
2931
Lines 2933-2938 C<$patron> is the patron who currently has the issue. Link Here
2933
2933
2934
C<$issue> is the checkout to renew.
2934
C<$issue> is the checkout to renew.
2935
2935
2936
C<$cron> true or false, specifies if this check is being made
2937
by the automatic_renewals.pl cronscript
2938
2936
C<$override_limit>, if supplied with a true value, causes
2939
C<$override_limit>, if supplied with a true value, causes
2937
the limit on the number of times that the loan can be renewed
2940
the limit on the number of times that the loan can be renewed
2938
(as controlled by the item type) to be ignored. Overriding also allows
2941
(as controlled by the item type) to be ignored. Overriding also allows
2939
- 

Return to bug 25393