From: erickson Date: Tue, 10 Oct 2006 18:45:38 +0000 (+0000) Subject: trying yet another date format to make vendors happy X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=00d73343824766bd9a886ee5c16b842f7df9401d;p=evergreen%2Fpines.git trying yet another date format to make vendors happy git-svn-id: svn://svn.open-ils.org/ILS/trunk@6433 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/perlmods/OpenILS/SIP.pm b/Open-ILS/src/perlmods/OpenILS/SIP.pm index 71b2abcd81..2f2dff8b07 100644 --- a/Open-ILS/src/perlmods/OpenILS/SIP.pm +++ b/Open-ILS/src/perlmods/OpenILS/SIP.pm @@ -123,8 +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 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;