changed due_date time to 00:00:00
authorerickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Mon, 23 Oct 2006 17:07:24 +0000 (17:07 +0000)
committererickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Mon, 23 Oct 2006 17:07:24 +0000 (17:07 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/trunk@6497 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/src/perlmods/OpenILS/SIP.pm

index 2f2dff8..b8aff71 100644 (file)
@@ -123,7 +123,7 @@ 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 .' 00:00:00' if $type eq 'due';
        #$date = $year.'-'.$mon.'-'.$day if $type eq 'due';
 
        syslog('LOG_DEBUG', "OILS: formatted date [type=$type]: $date");