From e3317218ac5fdb2756e5fc7caf60ba041beb2633 Mon Sep 17 00:00:00 2001 From: erickson Date: Mon, 9 Oct 2006 16:47:26 +0000 Subject: [PATCH] trying just date (not time) in the due date format for now git-svn-id: svn://svn.open-ils.org/ILS/trunk@6420 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/src/perlmods/OpenILS/SIP.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Open-ILS/src/perlmods/OpenILS/SIP.pm b/Open-ILS/src/perlmods/OpenILS/SIP.pm index 4dd40bea31..71b2abcd81 100644 --- a/Open-ILS/src/perlmods/OpenILS/SIP.pm +++ b/Open-ILS/src/perlmods/OpenILS/SIP.pm @@ -123,7 +123,8 @@ sub format_date { $day =~ s/^(\d)$/0$1/; $date = "$year$mon$day"; - $date = $year.'-'.$mon.'-'.$day .' 0:00:00' if $type eq 'due'; + #$date = $year.'-'.$mon.'-'.$day .' 0:00:00' if $type eq 'due'; + $date = $year.'-'.$mon.'-'.$day if $type eq 'due'; syslog('LOG_DEBUG', "OILS: formatted date [type=$type]: $date"); return $date; -- 2.11.0