From: erickson Date: Thu, 17 Aug 2006 15:45:47 +0000 (+0000) Subject: not forcing renewal_remaining to 0 to keep full track of renewal count X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=1a2d9efc7f717841a1b0370960a94dee1e95739b;p=evergreen%2Fpines.git not forcing renewal_remaining to 0 to keep full track of renewal count git-svn-id: svn://svn.open-ils.org/ILS/trunk@5559 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/perlmods/OpenILS/Application/Circ/Circulate.pm b/Open-ILS/src/perlmods/OpenILS/Application/Circ/Circulate.pm index b98c1e2fb3..7888854aa1 100644 --- a/Open-ILS/src/perlmods/OpenILS/Application/Circ/Circulate.pm +++ b/Open-ILS/src/perlmods/OpenILS/Application/Circ/Circulate.pm @@ -1619,7 +1619,7 @@ sub do_renew { # ----------------------------------------------------------------- $self->renewal_remaining( $circ->renewal_remaining - 1 ); - $self->renewal_remaining(0) if $self->renewal_remaining < 0; + #$self->renewal_remaining(0) if $self->renewal_remaining < 0; $self->circ($circ); $self->run_renew_permit;