From 8cef238d3ab2886826c1aaac7b9e4ea2476d5ec4 Mon Sep 17 00:00:00 2001 From: Colin Campbell Date: Thu, 23 Aug 2012 14:04:31 +0100 Subject: [PATCH 1/1] 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 Signed-off-by: Paul Poulain --- reserve/renewscript.pl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/reserve/renewscript.pl b/reserve/renewscript.pl index d13ced3cca..dbdced9c80 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"; -- 2.20.1