From 050b717e36d5f2a69ca19fc8e65ba6331fb25f04 Mon Sep 17 00:00:00 2001 From: Colin Campbell Date: Thu, 23 Aug 2012 14:04:31 +0100 Subject: [PATCH] Bug 8675 Add hours and mins to renewal due date If user supplies renewal with a new due date it should add a time using the same logic as dateduespec in circulation.pl rather than defaulting to 00:00 Signed-off-by: Chris Cormack --- reserve/renewscript.pl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/reserve/renewscript.pl b/reserve/renewscript.pl index d13ced3..dbdced9 100755 --- a/reserve/renewscript.pl +++ b/reserve/renewscript.pl @@ -68,6 +68,8 @@ my $branch = $input->param('branch'); my $datedue; if ( $input->param('newduedate') ) { $datedue = dt_from_string( $input->param('newduedate') ); + $datedue->set_hour(23); + $datedue->set_minute(59); } # warn "barcodes : @barcodes"; -- 1.7.9.5